arabic character viewing during runtime
arabic, asp.net, encoding, html, telerik
Solution
After several tries i just change the charset to `windows-1252` and every thing goes okay.
Like this:
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
Problem
I face the following problem : when i copy a specific page to my new solution : in run time i get this !! although it 's like this in the design time : my .aspx : ``` <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ``` i try to use `charset=iso-8859-6` instead but the same problem !! How to fix this problem and why this happens ?