In my C#.NET web application, using IE8, I'm using javascript to insert special characters (¿, «, ») into a URL query string which will then be parsed by server code. However, the server does not seem to recognize these characters, and reads them as ��. My script tag appears as so:
<script type="text/javascript" charset="UTF-8">
The following illustrates the jist of what I'm trying to accomplish, using javascript.
window.open('../../CommonPages/Email.aspx?specialChar1=¿&specialChar2=«&specialChar3=»', 'EmailSearch', 'status=1,width=605,height=605,modal=1');
What am I missing? All help is greatly appreciated, thanks!