To save in hebrew unicode

Last post 12-10-2005, 5:13 PM by Adam. 1 replies.
Sort Posts: Previous Next
  •  12-05-2005, 4:20 PM 13412

    To save in hebrew unicode

    Hi i need help i can't see the pages. in hebrew if i include it after that in other page. but in the old editor it worked
    what is the differnce between the asp and the 5.0 ,net one.
     
  •  12-10-2005, 5:13 PM 13680 in reply to 13412

    Re: To save in hebrew unicode

    It's not an editor issue. It's about the ASP.NET globalization.

    ASP.NET uses the UTF-8 character encoding by default when interpreting requests and composing responses. UTF-8 is optimized for the lower 127 ASCII characters, which means it provides an efficient way to encode languages that use the Latin alphabet. UTF-8 is also backward-compatible with the ASCII character encoding, meaning that UTF- 8 readers can interpret ASCII files.

    To use the windows-1255 encoding, please modify your web.config file as followings:

    <configuration>
      <system.web>
          <identity impersonate="true"/>
          <globalization
        requestEncoding="windows-1255"
        responseEncoding="windows-1255"
               fileEncoding="windows-1255"
               culture="he-IL"
               uiCulture="he-IL"
            />
      </system.web>
    </configuration>
     
     

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View as RSS news feed in XML