简单一点的,带数据库的,可以用ACCESS来做,很方便,它是office自己带的一个应用。
对于工程不是很大的项目来说,够了用了,而且系统带的控件和提示功能都很丰富,建议用ACCESS。
其它的的工具,只要是可视化的开发工具,也都可以,VC2005/2008,C#,VB,Delphi,C++Builder等等。
第一步,你需要搭建一个开发环境,我以b/s中的asp为例,web server:netbox,使用方便
语言:asp,入手容易
数据库:access,界面 *** 作,无需密码, *** 作简单。第二步,新建一个用户表,username char(20)password char(20)添加数据,admin mypassword第三步,新建登录界面,文件名 login.asp<div>
<form name="login" method="post" action="loginaction.asp" target="_top">
<table align="center" style="margin-top:30"><tr><td>请输入用户名</td>
<td><input type="text" name="userName" id="userName2" size="10" /></td></tr><tr><td>请输入密码 </td>
<td><input type="password" name="userPwd" id="userPwd2" size="10" /></td></tr><tr><td colspan="2" align="center"><input type="button" id="login2" value="登录" onClick="login2Check()" /></td></tr></table></form></div>新建loginaction.asp<!--#include file="conn.asp"--><%dim sql,userName,userPwd
userName=trim(request("userName"))
userPwd=trim(request("userPwd"))
if userName="maintain" then
sql="select userPwd from user_info where userId=2"
rs.Open sql,cn,1,1
asd=trim(rs("userPwd"))
if userPwd=asd then
session("name")=userName
response.Redirect("maintainance_personnel.asp")else%><script language="javascript">
alert("密码错误!")
window.location="index.asp"</script><%end ifrs.closeelse%>
<script language="javascript">
alert("用户名错误!")
window.location="index.asp"</script><%end if%>新建连接数据库文件conn.asp<%
set cn=Server.CreateObject("ADODB.Connection")
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)