To work around this problem, you can disable the cross-site
scripting detection or you can store the view state on the server. To disable
cross-site scripting detection on your Check Point Firewall-1, see your Check
Point Firewall-1 documentation. For more information, visit the following Check
Point Web site:
Microsoft
provides third-party contact information to help you find technical support.
This contact information may change without notice. Microsoft does not
guarantee the accuracy of this third-party contact information.
To store the view state on the server, use the
following code sample:
C#:
protected override object LoadPageStateFromPersistenceMedium() {
return Session["_ViewState"];
}
protected override void SavePageStateToPersistenceMedium(object viewState)
{
Session["_ViewState"] = viewState;
}
VB.NET
Protected Overrides Function LoadPageStateFromPersistenceMedium() As Object
Return Session("_ViewState")
End Function
Protected Overrides Sub SavePageStateToPersistenceMedium(ByVal viewState As Object)
Session("_ViewState") = viewState
End Sub