计算机等级考试报名系统用.net怎么设计?给个完整的程序,有厚奖

用.net做个计算机等级考试报名系统,会的留答案,做的全面的再送80个QB
课程设计要求完成系统基本功能,包括以下几个模块:1.登录模块——用户身份验证、修改密码;2.用户管理模块——用户的添加、修改、删除及权限授予与取消3.考生信息浏览、添加模块4.考生信息删除模块5.考生信息修改模块;6.考生信息查询模块——按多种方式分别实现查询功能。

这个是一个等级考试系统登录界面
Private Sub _Command1_0_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles _Command1_0.Click
Dim strSQL As String
Dim cn As New adodb.connection
Dim rs As New adodb.recordset
cn.ConnectionString = "Provider=sqloledb;Data Source=pmserver;Initial Catalog=northwind;User Id=sa;Password=sa; "
cn.open()
rs.CursorLocation = adUseClient
strSQL = "select 密码 from 表 where 登录名= ' " & txtUserID.Text & " ' "
rs.Open(strSQL, cn, adOpenStatic, adLockReadOnly)
If rs.recordcount = 0 Then
MsgBox( "用户名不正确 ")
Else
if rs.fields[0].value = txtPwd.text then
MsgBox( "登录成功 ")
Else
MsgBox( "密码错误 ")
End If
End If
End Sub
温馨提示:答案为网友推荐,仅供参考
第1个回答  2013-05-11
这东西很简单,一天就可以做完,自己动手写一个
.net开发起来很快的
相似回答
大家正在搜