欢迎光临
我们一直在努力

用户登录 – asp实例-ASP教程,ASP应用

建站超值云服务器,限时71元/月

请输入用户名和密码

用户名:
密码:


源码:

<html>
<body>
<title>
用户登录
</title>
<%
if request.form.count=0 then
%>
请输入用户名和密码
<form action=”login.asp” method=”post”>
<table border=0>
<tr><td>用户名:</td>
<td><input type=text name=username value=”1234″ size=”20″></td>
</tr>
<tr><td>密码:</td>
<td><input type=password name=password value=”1234″ size=”20″></td>
</tr>
</table>
<input type=submit value=确认提交>
<input type=reset value=重新输入>
</form>

<%else%>
<%
dim user
dim pwd
user=request.form(“username”)
pwd=request.form(“password”)

if user=”1234″ then
if pwd=”1234″ then
response.write “用户登录成功”
else
response.write “用户密码无效”
end if
else
response.write “用户无效”
end if
end if
%>

    由于下吧学习频道浏览页面为html页面,因此无法演示正常的asp代码效果。上面给出的演示,为代码通过iis解释后的一种情况。用户可以通过代码复制,自行测试效果。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 用户登录 – asp实例-ASP教程,ASP应用
分享到: 更多 (0)