主题:谁可以帮帮我,登陆代码编写
奶茶仔仔
[专家分:0] 发布于 2007-03-26 11:22:00
用VB语言的, 我的数据库名叫frank 表是student 字段是"姓名""密码"
我不会编程...麻烦帮我写一段,谢谢!简单就行....按钮是OK_Click 的才click事件
用于验证用户的, 数据库是SQL的
回复列表 (共2个回复)
沙发
wuxiaobo [专家分:20] 发布于 2007-04-03 12:50:00
你可以根据你输入的内容去查询数据库表studeng
dim sql as string
sql="select * from student where 姓名='" & textbox1.text & "' and 密码='" & textbox2.text & "';"
dim cmd as new oledbcommand(sq,conn)
conn.open
dim dr as oledbdatareader=cmd.executereader()
if dr.read then
'转到你要到的页面
else
'报错
endif
板凳
wuxiaobo [专家分:20] 发布于 2007-04-03 12:51:00
将上面的ole 改为 sql
我来回复