文件名称:网络竞拍系统
文件大小:438KB
文件格式:DOC
更新时间:2015-12-26 04:59:25
网络竞拍系统
<form method=”post”action=”go.asp”name=”forml>
账号:<input type=”text”name=”userid”size=20></p>
密码:<input type=”password”name=”password”size=16></p>
<input type=”submit”name=”submit”value=”登录”></p> </form> 忘了密码!
我想成为新会员
新会员注册页面主要代码(省略部分重复代码):
Newmem.htm
<html> <head> <title>申请新会员</title> </head>
[removed]
sub check()
if forml.name.value=empty then msgbox“请填写您的真实姓名!”
focusto(l)
exit sub end if
if forml.userid.value=empty then msgbox“请填写您的ID号码!”
focusto(2)
exit sub end if
•⋯ 其他同理, 略。
Forml.submit end sub sub focusto(x)
Document.forml.elements(x).focus() end.sub [removed]
<body language=”vbsrcipt”bgcolor=”#ffffff” text=”#3333ff”
<table>略
<form action=”submitnew.asp”method=”post”name=”forml”>
*您的真实姓名:<input type=”text”name=”name”size=10>
*您的登录账号:<input type=”text”name=”userid”size=12>
*密码:<input type=”password”name=”password2”size=15>
其他表单元素同理,略。<input type=”button”name=”subto”value=”提交” <input type=”rest”name=”rest”value=”清空”>
</form> </body> </html>