User1711366110 posted
Hi mintssoul,
As per this case, check the following details :
1.you have to disable request validation on a page then must set the validateRequest attribute of the Page directive to false like below:
<%@ Page validateRequest="false" %>
2.Or you have to disable request validation for your application, then must modify or create a Web.config file for your application and set the validateRequest attribute of
the <pages /> section to false like below:
<configuration>
<system.web>
<pages validateRequest="false" />
</system.web>
</configuration>
for more information ,
Click here to know more about How to Preventing Script Attacks from Request Validation.