user_add_name.asp
来自「本源代码为终点小说连载系统 v1.15 Build 0430 SQL清风修改版,」· ASP 代码 · 共 56 行
ASP
56 行
<script language="JavaScript" type="text/JavaScript">
<!--
function checkuser()
{
var user = document.userinfo.name;
if (user.value) {
window.open("checkptidnew.asp?name="+user.value,"_blank","top=100,left=100,height=185,width=320,status=no,toolbar=no,menubar=no,location=no")
}
else {
alert("请先填写好帐号!");
user.focus();
}
}
//-->
</script>
<table width="100%" border="0" align="center" cellspacing="1" cellpadding="4" bgcolor="#CCCCCC">
<tr bgcolor="#588fc7">
<td colspan="4" height="34" class="head"><font color="#FFFFFF">用户注册</font></td>
</tr>
<tr>
<td bgcolor="#F7F7F7" height="130">
<form action="user_add_namepost.asp" method="post" name="userinfo" onsubmit="return check(this);">
<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="25"></td>
</tr>
</table>
<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td height="30"> 首次登陆需填写昵称</td>
<td height="30">
<input name="name" type="text" id="name" maxlength="18" size="18"></td>
</tr>
<tr>
<td height="30" colspan="2"> *昵称长度<font face="Times New Roman">1-8</font>字符,可使用英文字母、数字
、汉字。 </td>
</tr>
</table>
<p></p>
<table width="80%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr align="center">
<td>
<input name="submit" type="submit" value="提 交" class="button">
</td>
<td>
<input name="reset" type="reset" value="取 消" class="button">
</td>
<td colspan="4" align="center">
<input name="checkacc" type="button" value="检 查" onclick="checkuser();" class="button"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?