会ASP编程的请进

来源:百度知道 编辑:UC知道 时间:2024/06/22 08:55:01
请问会员登陆系统的代码是什么?
怎样实现会员登陆系统?

^_^

给楼主写个最简单的登陆系统,希望能给您一个入门指引。

实用的登陆系统比这个复杂多了,但是思路基本一致。

请阅读、研究、调试并运行下面3个文件的代码:

1. default.asp

<%
if (request("login")<>"ok") then
response.redirect "login.asp"
end if
%>
<html>
<head><title>系统主页</title></head>
<body>
<p>成功登陆,这是系统主页!</p>
<p><a href="login.asp" target="_self">返回重新登陆</a></p>
</body>
</html>

2. login.asp

<html>
<head><title>登录</title></head>
<body>
<form method="POST" action="check.asp" target="_self">
<table border="0" width="200">
<tr><td><font color="FF1111"><font size="2" color="FF1111">
<% if request("temp