Thursday, November 20, 2008

Pass parameters in QueryString in other languages

In ASP.NET you might have a problem with passing strings in languages other then English.

so what you need to do is:

Add to the web.config file under "system.web" this lines:

<globalization fileEncoding="windows-1255" requestEncoding="windows-1255" responseEncoding="windows-1255"/>


Now windows-1255 is the hebrew encoding, you need to find what's the windows encoding for your language.


Hope that was helpful.

Tomer

No comments: