华莱士快餐创始人:网站的用户注册和登录怎么做?

来源:百度文库 编辑:高校问答 时间:2024/04/29 00:23:37
网站的用户注册和登录怎么做的?步骤,什么程序????
大家可以看看我是网站(建设中)www.futwriter.com我想在最上面做个用户登陆和注册的!

如果要完全自己做,需要自己编程,要有一定的编程知识。但也可以从网上下载一些另人已做好的模板。

高手呀,同意

可以自己找一个程序down``/qq 480671

<title>用户管理系统登陆界面</title>
</head>
<STYLE type=text/css>A:link {
COLOR: #000080; FONT-FAMILY: 宋体; TEXT-DECORATION: none
}
A:visited {
COLOR: ##000080; FONT-FAMILY: 宋体; TEXT-DECORATION: none
}
A:active {
FONT-FAMILY: 宋体; TEXT-DECORATION: underline
}
A:hover {
COLOR: #000080; text-decoration : none ;position : relative;top:1;left:1;
}
A.link {
COLOR: #000080; text-decoration : none ;position : relative;top:1;left:1;
}
BODY {
COLOR: #000080; FONT-FAMILY: 宋体; FONT-SIZE: 9pt
}
TABLE {
COLOR: #000080; FONT-FAMILY: 宋体; FONT-SIZE: 9pt
}

</STYLE>
<body topmargin="0" leftmargin="0" bgcolor="#276db2">
<br><br><br><br><br><br><br><br><br><br>
<table width="75%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center"><font size="6">用户管理系统</font></div></td>
</tr>
</table>
<br><br>
<script>
function closewindow(form)
{
form.action=form.out.value;
return true;
}
</script>
<form action="..\logon.asp" method="post" >
<table width="50%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" colspan="2">
<div align="center">
<p align="center"><font size="4"><strong>请输入用户名和密码</strong>:</font>
</div></td>
</tr>
<tr>
<td width="30%"><div align="right">用户名:</div></td>
<td width="70%"><input maxLength="20" name="name" size="12" class=editbox1 style="BORDER-RIGHT: #ffffff 1px groove; BORDER-TOP: #ffffff 1px groove; FONT: 16px Verdana,Geneva,sans-serif; BORDER-LEFT: #ffffff 1px groove; WIDTH: 240px; COLOR: #000000; BORDER-BOTTOM: #ffffff 1px groove; HEIGHT: 24px; BACKGROUND-COLOR: #ffffff"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> <div align="right">密 码 :</div></td>
<td><input name="password" size="12" type="password" class=editbox1 style="BORDER-RIGHT: #ffffff 1px groove; BORDER-TOP: #ffffff 1px groove; FONT: 16px Verdana,Geneva,sans-serif; BORDER-LEFT: #ffffff 1px groove; WIDTH: 240px; COLOR: #000000; BORDER-BOTTOM: #ffffff 1px groove; HEIGHT: 24px; BACKGROUND-COLOR: #ffffff"></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type=hidden name="out" value="..\logon.asp">
<input name="login" type="submit" onClick="return closewindow(this.form);window.close();" value="登录" class=button1>
<input type="reset" name="Submit" value="重置">
</div></td>
</tr>
</table>
</form>
</html>

把上面代码复制在文本文件中!
后缀名为***.asp(*代表你要命名的文件名)