Recently I was facing an issue where my website is working fine
with other browsers but it fails on internet explorer. Getting deeper into that
issue I found like session values are lost
on every request on pages on internet explorer, this is because session id actually getting changes on every request on internet
explorer.
Getting into deeper, why it wasn't working is, because
my website's url contained an underscore character (ie http://my_website). I have changed the name and
now it all works fine.
Reference: Muthukumar Nadar (http://nadarmuthukumar.blogspot.in)
http://www-01.ibm.com/support/docview.wss?uid=swg21112062
http://www.alexrothenberg.com/2010/09/24/use-dashes-not-underscores-in-your.html
http://www.ietf.org/rfc/rfc2396.txt
http://forums.iis.net/post/1873244.aspx
Hope...