Allow Arabic language to insert in ASP.Net
Expert User
Verified
Allow the Arabic language to insert in ASP.Net
<%@ Page validateRequest="false" ...>
NA
<system.web> <page validateRequest="false" /> </system.web>
Add below snippets in ASPX page in particular page
<%@ Page validateRequest="false" ...>
OR
Add below snippets in web.config to apply by default in every page
<system.web>
<page validateRequest="false" />
</system.web>
After adding the above snippets you will be able to add Any language from a web form without issue in ASP.Net C#.
Comments
Leave a Comment