📄 newuser.asp
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>会员免费注册系统</TITLE>
<META content="text/html; charset=gb2312" http-equiv=Content-Type>
<STYLE type=text/css>
TD {
FONT-FAMILY: "宋体"; FONT-SIZE: 9pt
}
</STYLE>
<SCRIPT language=javascript id=clientEventHandlersJS>
//函数名:chksafe
//功能介绍:检查是否含有"'",'\\',"/"
//参数说明:要检查的字符串
//返回值:0:是 1:不是
function chksafe(a)
{
return 1;
/* fibdn = new Array ("'" ,"\\", "、", ",", ";", "/");
i=fibdn.length;
j=a.length;
for (ii=0;ii<i;ii++)
{ for (jj=0;jj<j;jj++)
{ temp1=a.charAt(jj);
temp2=fibdn[ii];
if (tem';p1==temp2)
{ return 0; }
}
}
return 1;
*/
}
//函数名:chkspc
//功能介绍:检查是否含有空格
//参数说明:要检查的字符串
//返回值:0:是 1:不是
function chkspc(a)
{
var i=a.length;
var j = 0;
var k = 0;
while (k<i)
{
if (a.charAt(k) != " ")
j = j+1;
k = k+1;
}
if (j==0)
{
return 0;
}
if (i!=j)
{ return 2; }
else
{
return 1;
}
}
//函数名:chkemail
//功能介绍:检查是否为Email Address
//参数说明:要检查的字符串
//返回值:0:不是 1:是
function chkemail(a)
{ var i=a.length;
var temp = a.indexOf('@');
var tempd = a.indexOf('.');
if (temp > 1) {
if ((i-temp) > 3){
if ((i-tempd)>0){
return 1;
}
}
}
return 0;
}
//opt1 小数 opt2 负数
//当opt2为1时检查num是否是负数
//当opt1为1时检查num是否是小数
//返回1是正确的,0是错误的
function chknbr(num,opt1,opt2)
{
var i=num.length;
var staus;
//staus用于记录.的个数
status=0;
if ((opt2!=1) && (num.charAt(0)=='-'))
{
//alert("You have enter a invalid number.");
return 0;
}
//当最后一位为.时出错
if (num.charAt(i-1)=='.')
{
//alert("You have enter a invalid number.");
return 0;
}
for (j=0;j<i;j++)
{
if (num.charAt(j)=='.')
{
status++;
}
if (status>1)
{
//alert("You have enter a invalid number.");
return 0;
}
if (num.charAt(j)<'0' || num.charAt(j)>'9' )
{
if (((opt1==0) || (num.charAt(j)!='.')) && (j!=0))
{
//alert("You have enter a invalid number.");
return 0;
}
}
}
return 1;
}
//函数名:chkdate
//功能介绍:检查是否为日期
//参数说明:要检查的字符串
//返回值:0:不是日期 1:是日期
function chkdate(datestr)
{
var lthdatestr
if (datestr != "")
lthdatestr= datestr.length ;
else
lthdatestr=0;
var tmpy="";
var tmpm="";
var tmpd="";
//var datestr;
var status;
status=0;
if ( lthdatestr== 0)
return 0
for (i=0;i<lthdatestr;i++)
{ if (datestr.charAt(i)== '-')
{
status++;
}
if (status>2)
{
//alert("Invalid format of date!");
return 0;
}
if ((status==0) && (datestr.charAt(i)!='-'))
{
tmpy=tmpy+datestr.charAt(i)
}
if ((status==1) && (datestr.charAt(i)!='-'))
{
tmpm=tmpm+datestr.charAt(i)
}
if ((status==2) && (datestr.charAt(i)!='-'))
{
tmpd=tmpd+datestr.charAt(i)
}
}
year=new String (tmpy);
month=new String (tmpm);
day=new String (tmpd)
//tempdate= new String (year+month+day);
//alert(tempdate);
if ((tmpy.length!=4) || (tmpm.length>2) || (tmpd.length>2))
{
//alert("Invalid format of date!");
return 0;
}
if (!((1<=month) && (12>=month) && (31>=day) && (1<=day)) )
{
//alert ("Invalid month or day!");
return 0;
}
if (!((year % 4)==0) && (month==2) && (day==29))
{
//alert ("This is not a leap year!");
return 0;
}
if ((month<=7) && ((month % 2)==0) && (day>=31))
{
//alert ("This month is a small month!");
return 0;
}
if ((month>=8) && ((month % 2)==1) && (day>=31))
{
//alert ("This month is a small month!");
return 0;
}
if ((month==2) && (day==30))
{
//alert("The Febryary never has this day!");
return 0;
}
return 1;
}
//函数名:fucPWDchk
//功能介绍:检查是否含有非数字或字母
//参数说明:要检查的字符串
//返回值:0:含有 1:全部为数字或字母
function fucPWDchk(str)
{
var strSource ="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
var ch;
var i;
var temp;
for (i=0;i<=(str.length-1);i++)
{
ch = str.charAt(i);
temp = strSource.indexOf(ch);
if (temp==-1)
{
return 0;
}
}
if (strSource.indexOf(ch)==-1)
{
return 0;
}
else
{
return 1;
}
}
function jtrim(str)
{ while (str.charAt(0)==" ")
{str=str.substr(1);}
while (str.charAt(str.length-1)==" ")
{str=str.substr(0,str.length-1);}
return(str);
}
//函数名:fucCheckNUM
//功能介绍:检查是否为数字
//参数说明:要检查的数字
//返回值:1为是数字,0为不是数字
function fucCheckNUM(NUM)
{
var i,j,strTemp;
strTemp="0123456789";
if ( NUM.length== 0)
return 0
for (i=0;i<NUM.length;i++)
{
j=strTemp.indexOf(NUM.charAt(i));
if (j==-1)
{
//说明有字符不是数字
return 0;
}
}
//说明是数字
return 1;
}
//函数名:fucCheckTEL
//功能介绍:检查是否为电话号码
//参数说明:要检查的字符串
//返回值:1为是合法,0为不合法
function fucCheckTEL(TEL)
{
var i,j,strTemp;
strTemp="0123456789-()# ";
for (i=0;i<TEL.length;i++)
{
j=strTemp.indexOf(TEL.charAt(i));
if (j==-1)
{
//说明有字符不合法
return 0;
}
}
//说明合法
return 1;
}
//函数名:fucCheckLength
//功能介绍:检查字符串的长度
//参数说明:要检查的字符串
//返回值:长度值
function fucCheckLength(strTemp)
{
var i,sum;
sum=0;
for(i=0;i<strTemp.length;i++)
{
if ((strTemp.charCodeAt(i)>=0) && (strTemp.charCodeAt(i)<=255))
sum=sum+1;
else
sum=sum+2;
}
return sum;
}
</SCRIPT>
<SCRIPT language=javascript>
function chkitem(str)
{
var strSource ="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_";
var ch;
var i;
var temp;
for (i=0;i<=(str.length-1);i++)
{
ch = str.charAt(i);
temp = strSource.indexOf(ch);
if (temp==-1)
{
return 0;
}
}
if (strSource.indexOf(ch)==-1)
{
return 0;
}
else
{
return 1;
}
}
function FORM1_onsubmit()
{
if (chkitem(document.FORM1.uid.value)==0)
{
alert("请输入正确的会员帐号。");
document.FORM1.uid.focus();
return false;
}
if ((document.FORM1.uid.vlaue=='') || (chkspc(document.FORM1.uid.value)==0)|| (chkspc(document.FORM1.uid.value)==2))
{
alert("请将会员帐号填写完整,且不能使用空格!");
document.FORM1.uid.focus();
return false;
}
if ( fucCheckLength(document.FORM1.uid.value) != document.FORM1.uid.value.length )
{
alert("会员帐号请不要使用中文!");
document.FORM1.uid.focus();
return false;
}
if (fucCheckLength(document.FORM1.uid.value) <4 )
{
alert("会员帐号必须至少4位");
document.FORM1.uid.focus();
return false;
}
}
</SCRIPT>
<META content="Microsoft FrontPage 4.0" name=GENERATOR>
<link href="IMAGES/uming_xp.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
margin-top: 90px;
}
-->
</style></HEAD>
<BODY bgColor=#339900 >
<TABLE cellSpacing=0 cellPadding=0 width=776 align=center bgColor=#ffffff
border=0>
<TBODY>
<TR>
<TD vAlign=top width=2 background=images/new_bg2.gif><IMG height=10
src="images/dot.gif" width=2></TD>
<TD vAlign=top>
<TABLE cellSpacing=4 cellPadding=0 width="100%" border=0>
<TBODY>
</TBODY>
</TABLE>
<TABLE height="100%" cellSpacing=0 cellPadding=0 width=778 bgColor=#ffffff
border=0>
<TBODY>
<TR>
<TD vAlign=top background=images/2px_bk.gif height=20>
<TABLE cellSpacing=0 cellPadding=0 width=778 bgColor=#d9e4d3
border=0>
<TBODY>
<TR>
<TD height=1><IMG height=1 src="images/1px.gif"
width=1></TD>
</TR>
</TBODY>
</TABLE>
<TABLE height=24 cellSpacing=0 cellPadding=0 width=778
background=images/top_line.gif border=0>
<TBODY>
<TR>
<TD width=482> </TD>
<TD class=smallfont width=296><FONT
face="Arial, Helvetica, sans-serif" color=#ffffff>Copyright 2003-2008© All Rights Reserved.</FONT></TD>
</TR>
</TBODY>
</TABLE>
<TABLE cellSpacing=0 cellPadding=0 width=778
background=images/2px_bk.gif border=0>
<TBODY>
<TR>
<TD><IMG height=81 src="images/image_001.jpg"
width=414></TD>
<TD> </TD>
</TR>
</TBODY>
</TABLE>
<TABLE height=27 cellSpacing=0 cellPadding=0 width=778
background=images/2px_bk2.gif border=0>
<TBODY>
<TR>
<TD><IMG height=27 src="IMAGES/image_002.jpg"
width=414></TD>
<TD>
<DIV class=smallfont></DIV></TD>
</TR>
</TBODY>
</TABLE>
<TABLE height=150 cellSpacing=0 cellPadding=0 width=778
background=images/2px_bk.gif border=0>
<TBODY>
<TR>
<TD vAlign=top width=126><IMG height=170
src="images/image_003.jpg" width=126></TD>
<TD vAlign=top align=middle width=189
background=images/image_004.jpg><IMG height=1
src="images/1px.gif" width=1>
<TABLE class=smallfont cellSpacing=0 cellPadding=0
width="100%" border=0>
<FORM language=javascript name=FORM1 onsubmit="return FORM1_onsubmit()"
action=newuser2.asp method=post>
<TBODY>
<TR>
<TD align=middle>
<TABLE width=100% border=0 align="center" cellPadding=0 cellSpacing=0>
<TBODY>
<TR>
<TD width=76 height=22><IMG height=1 src=""
width=1></TD>
<TD width=113 height=11><IMG height=1 src=""
width=1></TD>
</TR>
<TR>
<TD align=middle width=76 height=25><div align="center">注册账号:</div></TD>
<TD class=hh width=113 height=25><INPUT id=username name=uid size=12>
</TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR align=middle>
<TD height=61>
<TABLE width="88%" height=25
border=0 align="center" cellPadding=0 cellSpacing=0>
<TBODY>
<TR>
<TD vAlign=top align=middle
height=8><IMG height=4 src="images/dot.gif"
width=10></TD>
</TR>
<TR>
<TD align=middle width="52%" height=25>
<div align="center">
<INPUT type=image height=20
width=66 src="images/new_zc.gif" border=0
name=Submit1>
</div></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
</FORM>
</TABLE>
<TABLE class=smallfont cellSpacing=0 cellPadding=0
width="100%" border=0>
<TBODY>
<TR>
<TD align=middle> </TD>
</TR>
</TBODY>
</TABLE></TD>
<TD width=99><IMG height=170 src="images/image_005.jpg"
width=99></TD>
<TD vAlign=top>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD height=31> </TD>
</TR>
<TR>
<TD height=36><IMG height=36
src="images/image_006.gif" width=364></TD>
</TR>
<TR>
<TD height=12><IMG height=1 src="images/1px.gif"
width=200><IMG height=12 src="images/image_007.jpg"
width=96></TD>
</TR>
</TBODY>
</TABLE>
<TABLE height=91 cellSpacing=0 cellPadding=0 width="100%"
border=0>
<TBODY>
<TR>
<TD width=102> </TD>
<TD class=smallfont vAlign=top
background=images/image_008.jpg><BR>
<SPAN
id=lblMessage style="WIDTH: 228px"></SPAN>
<DIV id=ValidationSummary1
style="DISPLAY: none; COLOR: red" showsummary="False"
showmessagebox="True"></DIV></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
</TABLE></TD>
</TR>
</TABLE>
</TR>
<TBODY>
</TBODY>
</TABLE>
</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -