日期:2014-05-17 浏览次数:20510 次
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<script type="text/javascript">
function check()
{
if(document.getElementById("TextBox1").value=="aa")
{
return true;
}else
{
alert("失败");
return false;
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="return check()"
OnClick="Button1_Click" />
</div>
</form>
</body>
</html>