Confirmation Box Didnt Show Hebrew
I build my project in asp.net and for one of my frm I write script with confermation box. The function works great beside the hebrew msg. ie and chrom showen '?' mark instead of th
Solution 1:
This seems like an encoding issue. Try saving your document with a different encoding, I would suggest UTF-8.
To do this in Visual Studio: Open the document, go to File -> Save as and in the dialog that opens, the Save button has an arrow with options. Choose "Save with encoding" and then choose the appropriate encoding.
Hope this helps
Solution 2:
Thanks but I sloved the problem by adding the configuration this definition
<system.web><globalizationrequestEncoding="windows-1255"responseEncoding="windows-1255" /></system.web>
now the hebrew is working :)
Post a Comment for "Confirmation Box Didnt Show Hebrew"