anchor IE 6 bug - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T05:41:56Zhttp://stackoverflow.com/feeds/question/881967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881967/anchor-ie-6-bug0anchor IE 6 bugwaqasahmed2009-05-19T10:28:24Z2009-05-19T11:38:13Z
<p>I created an anchor like this:</p>
<pre><code><a id="create" />
</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
+ "&New=1#create");</p>
</blockquote>
<p>i.e. If I do: </p>
<blockquote>
<p>Response.Redirect(Request.Url.PathAndQuery
+ "&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#8819862Answer by SpliFF for anchor IE 6 bugSpliFF2009-05-19T10:32:59Z2009-05-19T10:32:59Z<p>from memory you use the 'name' attribute</p>
http://stackoverflow.com/questions/881967/anchor-ie-6-bug/881991#8819911Answer by Vierri for anchor IE 6 bugVierri2009-05-19T10:34:41Z2009-05-19T10:34:41Z<p>try to use name='create'</p>
http://stackoverflow.com/questions/881967/anchor-ie-6-bug/882224#8822242Answer by Artem K. for anchor IE 6 bugArtem K.2009-05-19T11:38:13Z2009-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 '&' before the '#'. So, in your example, the code will look like <code>Response.Redirect(Request.Url.PathAndQuery + "&New=1&#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>