我对 ASP.NET 请求验证和服务器端验证感到困惑。如果我们设置ValidateRequest="false",如下。
<%@ Language="C#" ValidateRequest="false" %>
<html>
<script runat="server">
void btnSubmit_Click(Object sender, EventArgs e)
{
// If ValidateRequest is false, then 'hello' is displayed
// If ValidateRequest is true, then ASP.NET returns an exception
Response.Write(txtString.Text);
}
</script>
<body>
<form id="form1" runat="server">
<asp:TextBox id="txtString" runat="server"
Text="<script>alert('hello');</script>" />
<asp:Button id="btnSubmit" runat="server" OnClick="btnSubmit_Click"
Text="Submit" />
</form>
</body>
</html>
那我们可以使用RequiredFieldValidator控件这样的服务端验证吗?
它们是不同的东西吗?但他们都有 validate 关键字。
谢谢你解释他们。