|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
写软件都是想的时间比写的时间要长的.如果反过来了就得看看是什么原因了. 另外大家可以回去问问公司里的小MM.(一般企业里,跟你们交付软件接触得最多的是她们)web|在线 法式使用FSO+SERV-U(2.x版本)完成:
1、index.htm
<html>
<head>
<title>宁波科宇网――团体网页请求</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="Javascript">
function CheckIfEnglish( String )
{
var Letters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-";
var i;
var c;
if(String.charAt( 0 )==''''-'''')
return false;
if( String.charAt( String.length - 1 ) == ''''-'''' )
return false;
for( i = 0; i < String.length; i ++ )
{
c = String.charAt( i );
if (Letters.indexOf( c ) < 0)
return false;
}
return true;
}
function checkSubmit() {
var EmailReg = /^[_a-z0-9]+@([_a-z0-9]+\.)+[a-z0-9]{2,3}$/;
if (document.form.name.value == "") {
alert("请输出您要注册的用户名!");
document.form.name.focus();
return false;
}
if (!CheckIfEnglish(document.form.name.value )) {
alert("用户名不克不及输出中文及不法字符!");
document.form.name.focus();
return false;
}
if ((document.form.pass.value == "")&&(document.form.rpass.value == "")) {
alert("暗码不克不及为空!");
document.form.pass.focus();
document.form.rpass.focus();
return false;
}
if ((document.form.pass.value)!=(document.form.rpass.value)) {
alert (''''二次暗码输出纷歧样!'''');
document.form.pass.focus();
document.form.rpass.focus();
return false;
}
if (document.form.email.value == "") {
alert("请输出您的Email!");
document.form.email.focus();
return false;
}
if ((!EmailReg.test(document.form.email.value))&&(document.form.email.value!='''''''')) {
alert (''''Email的格局不准确!'''');
document.form.email.focus();
return false;
}
return true;
}
</script>
<script language="JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" background="crystal.jpg">
<p align="center"> </p>
<p align="center"><b><font size="6" color="#333333">宁波科宇网――团体网页请求</font></b></p>
<p align="center"></p>
<table width="65%" border="0" align="center">
<tr>
<td>
<form name="form" method="post" action="page.asp">
<p><b>用户称号:</b>
<input type="text" name="name" size="10" class="form">
*
注重:用户名只能由英文字母(a-z、A-Z),数字(0-9)组成,不克不及有空格。
<b>密 码:</b>
<input type="password" name="pass" size="10" class="form">
*</p>
<p><b>确认暗码:</b>
<input type="password" name="rpass" size="10" class="form">
*(确认下面的暗码)</p>
<p><b>您的MAIL:</b>
<input type="text" name="email" size="20" class="form">*(请准确填写)
</p>
<p>
<input type="submit" name="Submit" value="提交" onClick ="java script:return checkSubmit()">
<input type="reset" name="Submit2" value="重写">
个中*号项目为必填项目!</p>
</form>
</td>
</tr>
</table>
<p align="center"><font color="#FF0000">注重:本空间可以装置BBS服装论坛,严厉制止江湖、聊天室等严重占用资本的法式运转。
一经发明,删除全体法式及FTP帐号,其实不于告诉!</font></p>
<p align="center"> </p>
<p align="center">-==<a href="mailto:support@4email.vicp.net">宁波科宇网</a>==-
CopyRight By KeYu Computer WorkRoom 2001-2002</p>
</body>
</html>
2、后台掌握文件page.asp
<html>
<head></p> 优点:简单易学、开发速度快、有很多年“历史”,能找到非常多别人做好的程序来用、配合activeX功能强大,很多php做不到的asp+activeX能做到,例如银行安全控件 |
|