IE is messing with my GET parameters
One of my GET parameters was named ª, and today when I was expecting to test the rendering of a page in IE9 vs Chrome, I found instead that IE9 wouldn't even load the right data because it was converting ª to "ª"(no quotes) which is ª HTML special character.
Is there anything I can do to prevent IE from doing this? Chrome and Firefox don't have any problems with the URL and display it fine. The on开发者_StackOverflow中文版ly fix I could think of was changing it from ª to something else, but I was hoping there was something easier or quicker.
You probably need to escape the & in the url in the HTML file as &
精彩评论