主题:ASP的表单问题
大家好
请问一下大家如何用ASP登录网站而不FORM /FORM
这个一个登录页
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="dis.asp">
<table width="200" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="30">用户</td>
<td><input name="user_name" type="text" size="15"></td>
</tr>
<tr>
<td>密码</td>
<td><input name="password" type="password" size="15"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="提交"seze="20"></td>
</tr>
</table>
</form>
</body>
</html>
这是处理显示信息的ASP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
Dim user_name,password
user_name=Request.Form("user_name")
password=Request.Form("password")
%>
用户;<%=user_name%>
密码;<%=password%>
</body>
</html>
我现在就是不要用FORM的
action="dis.asp"
来处理登录信息
因为用表单从是会把我的网页破坏
我没办法不知道还有那总方法
如有有那位好兄弟能否告知一下
小弟在这谢谢了
请问一下大家如何用ASP登录网站而不FORM /FORM
这个一个登录页
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="dis.asp">
<table width="200" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="30">用户</td>
<td><input name="user_name" type="text" size="15"></td>
</tr>
<tr>
<td>密码</td>
<td><input name="password" type="password" size="15"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="提交"seze="20"></td>
</tr>
</table>
</form>
</body>
</html>
这是处理显示信息的ASP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
Dim user_name,password
user_name=Request.Form("user_name")
password=Request.Form("password")
%>
用户;<%=user_name%>
密码;<%=password%>
</body>
</html>
我现在就是不要用FORM的
action="dis.asp"
来处理登录信息
因为用表单从是会把我的网页破坏
我没办法不知道还有那总方法
如有有那位好兄弟能否告知一下
小弟在这谢谢了