Martijn Pieters wrote:
At 10:37 26/08/99 , Martijn Faassen wrote:
When you click on this in IE, foobar is *not* reloaded, but the same foobar is recycled. This is okay. But the following in my opinion is *not* okay. We have this hyperlink:
http://localhost/foobar#foo?option=bar
IE also doesn't reload *this* page. It just uses the old page, which in a context of dynamic pages may be a completely different one. Obviously it would be as we use arguments. If you don't use the '#' then IE does reload. I consider this to be a bug in IE. Netscape doesn't have the same problem.
I think that is because officially #'s should come last:
http://localhost/foobar?option=bar#foo
Because the # is something the server never sees. Your URL has no query string, and a anchor/bookmark pointer of 'foo?option=bar', while my URL has the query string '?option=bar', and pointer 'foo'.
Aaaah. So it was my fault after all, I'll try this. Thanks! Regards, Martijn