G
Guest
I have a specific page that I have chosen to disable the .NET 1.1 validateRequest options by setting the page directive attribute of "validateRequest" from true to false. I manually validate all controls within this page. This page includes a UserControl which contains a textbox. It appears that the validateRequest attribute is not propagated to the usercontrol when the page is processed. This results in the standard "potentially dangerous" error being thrown, even though this process should be disabled for the entire form
I have not been able to locate an attribute for disabling client input validation against controls found in a UserControl. Shouldn't the validateRequest setting for the hosting page propagate to the UserControl
I have seen option for performing client side javascript HtmlEncoding to prevent this error. However, I need a more passive option that does not require the user to trigger the validation themselves.
I have not been able to locate an attribute for disabling client input validation against controls found in a UserControl. Shouldn't the validateRequest setting for the hosting page propagate to the UserControl
I have seen option for performing client side javascript HtmlEncoding to prevent this error. However, I need a more passive option that does not require the user to trigger the validation themselves.