首页 > 学院 > 开发设计 > 正文

ASP.NET升级能力探讨(二)

2019-11-18 21:44:27
字体:
来源:转载
供稿:网友
先举一个c#的例子

  验证用户表单输入

  运行环境:Win2000 Advance Server+IIS5.0+NGWS SDK(80M的).

<%@ Page Language="C#" %>

<html>
<script language="javascript">
function ClientValidateEmail(source, value)
{
var strr;
re=/(/w+@/w+/./w+)(/.{0,1}/w*)(/.{0,1}/w*)/i;
re.exec(value);
if (RegExp.$3!=""&&RegExp.$3!="."&&RegExp.$2!=".") strr=RegExp.$1+RegExp.$2+RegExp.$3
else
if (RegExp.$2!=""&&RegExp.$2!=".") strr=RegExp.$1+RegExp.$2
else strr=RegExp.$1
if (strr!=value)
return false;
else
return true;
}
</script>
<body>

<h3>asp.net验证用户输入</h3>

<form method=post runat=server>
<hr width=600 size=1 noshade>
<table>
<tr>
<td>
<asp:ValidationSummary ID="valSum" runat="server"
HeaderText="你必须输入下面这些表单域:"
DisplayMode="bulletlist"
Font-Name="宋体"
Font-Size="12"
/>
</td>
</tr>
</table>
<center>
<p>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表