anchor IE 6 bug - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:41:56Z http://stackoverflow.com/feeds/question/881967 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/881967/anchor-ie-6-bug 0 anchor IE 6 bug waqasahmed 2009-05-19T10:28:24Z 2009-05-19T11:38:13Z <p>I created an anchor like this:</p> <pre><code>&lt;a id="create" /&gt; </code></pre> <p>and it works in IE 7 but not in IE 6.</p> <p>How do I fix it in IE6?</p> <p>Further Info:</p> <p>I am using asp.net c#. I am running it in IE6 and in an iframe. The screen just refreshes and the panel doesn't show. But if I don't use: </p> <blockquote> <p>Response.Redirect(Request.Url.PathAndQuery + "&amp;New=1#create");</p> </blockquote> <p>i.e. If I do: </p> <blockquote> <p>Response.Redirect(Request.Url.PathAndQuery + "&amp;New=1");</p> </blockquote> <p>It works fine, but doesn't goto the panel. btw: it all works fine under IE 7. It doesnt work in IE 6 or in IE 6 in an iframe</p> http://stackoverflow.com/questions/881967/anchor-ie-6-bug/881986#881986 2 Answer by SpliFF for anchor IE 6 bug SpliFF 2009-05-19T10:32:59Z 2009-05-19T10:32:59Z <p>from memory you use the 'name' attribute</p> http://stackoverflow.com/questions/881967/anchor-ie-6-bug/881991#881991 1 Answer by Vierri for anchor IE 6 bug Vierri 2009-05-19T10:34:41Z 2009-05-19T10:34:41Z <p>try to use name='create'</p> http://stackoverflow.com/questions/881967/anchor-ie-6-bug/882224#882224 2 Answer by Artem K. for anchor IE 6 bug Artem K. 2009-05-19T11:38:13Z 2009-05-19T11:38:13Z <p>IE 6 has a strange behaviour, it does not recognizes redirects with anchors in it. The workaround is to add additional ampersand symbol '&amp;' before the '#'. So, in your example, the code will look like <code>Response.Redirect(Request.Url.PathAndQuery + "&amp;New=1&amp;#create");</code></p> <p>I suggest you to check User-Agent on the server side and add this additional ampersand if the browser is IE 6.</p>