| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 441 人关注过本帖
标题:.NET语句这哪错了?怎么不能更改?
只看楼主 加入收藏
lsz3344
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-4-11
收藏
 问题点数:0 回复次数:3 
.NET语句这哪错了?怎么不能更改?
Dim conn As SqlConnection = New SqlConnection("database=new;uid=sa;pwd=;server=127.0.0.1")
Dim sqlstr As String = "select * from usertable where where username=" & Session("username") & "and userpsd='" & userpsd.Text & "'"
Dim da As New SqlDataAdapter(sqlstr, conn)
conn.Open()
Dim ds As New DataSet
da.Fill(ds, "usertable")
If ds.Tables("usertable").Rows.Count = 0 Then
Response.Write("<script>alert('原密码输入不正确!')</script>")
Else

Dim comm As New SqlCommand("Update usertable Set userpsd='" & userpsd1.Text & " ' where username ='" & Session("username") & "' ", conn)
comm.ExecuteNonQuery()
Response.Write("<script>alert('修改成功!')</script>")
End If
conn.Close()
搜索更多相关主题的帖子: NET 语句 
2007-04-24 16:38
lsz3344
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-4-11
收藏
得分:0 
不能得到当前的username的值

2007-04-24 16:39
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
收藏
得分:0 
以下是引用lsz3344在2007-4-24 16:38:08的发言:
Dim conn As SqlConnection = New SqlConnection("database=new;uid=sa;pwd=;server=127.0.0.1")
Dim sqlstr As String = "select * from usertable where where username='" & Session("username").ToString() & "'" & "and userpsd='" & userpsd.Text & "'"
Dim da As New SqlDataAdapter(sqlstr, conn)
conn.Open()
Dim ds As New DataSet
da.Fill(ds, "usertable")
If ds.Tables("usertable").Rows.Count = 0 Then
Response.Write("<script>alert('原密码输入不正确!');</script>")
Else

Dim comm As New SqlCommand("Update usertable Set userpsd='" & userpsd1.Text & " ' where username ='" & Session("username").ToString() & "' ", conn)
comm.ExecuteNonQuery()
Response.Write("<script>alert('修改成功!');</script>")
End If
conn.Close()

其实这样的问题你加个 try..catch..就什么问题都知道了.


飘过~~
2007-04-24 17:05
lsz3344
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-4-11
收藏
得分:0 
呵呵,加哪啊?我是刚学啊,还不懂哦!~~

2007-04-24 17:09
快速回复:.NET语句这哪错了?怎么不能更改?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029594 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved