NOTE: ASP.Net Problem
In my page I have a div called “theimage”
In my code I’m populating the div with this code
theimage.InnerHtml = "<img src=""" & filestring & """ alt=""" & artdet.imagedesc & """ />"
filestring being the images file location and imagedesc being the text for the alt tag.
The image displays fine, but the problem is the image is halfway down my page and for some reason IE scrolls down to the image as soon as the page loads, half way down the page.
I tried adding <a name="#top"></a> to the top of the page and then saying response.redirect("#top", true) but my page redirects to the default.aspx page for the site. It’s also not the last thing the page_load procedure does.
Any ideas/suggestions are welcome 