Hi there,
I have made the following url rewrite:
www.domain.com/theme/red ->
www.domain.com/default.aspx?theme=red
Although it works fine for all other browsers I have a problem with IE10.
When I am trying to navigate to a different page from html code <a href=test.aspx">test</a>
I am transferred to ".../theme/test.aspx" that does not exists instead of the correct url ".../test.aspx".
If I use on codebehind
Server.Transfer("~/test.aspx")
it goes to the correct url.
Any ideas? thanks...
Go to the complete details ...