Keeping the position on the page
-
When a user scrolls to the bottom of the page and clicks a button a similar page is displayed. When this second pages displays I would like it to automatically scroll down to the bottom as was the first page. Can this be done?
-
When a user scrolls to the bottom of the page and clicks a button a similar page is displayed. When this second pages displays I would like it to automatically scroll down to the bottom as was the first page. Can this be done?
if using IE try SmartNavigation = true;
-
When a user scrolls to the bottom of the page and clicks a button a similar page is displayed. When this second pages displays I would like it to automatically scroll down to the bottom as was the first page. Can this be done?
-
When a user scrolls to the bottom of the page and clicks a button a similar page is displayed. When this second pages displays I would like it to automatically scroll down to the bottom as was the first page. Can this be done?
Use SmartNavigation in ASp.net But it will work only in IE "Aim to go where U have never been B4 and Strive to achieve it" http://groups.yahoo.com/subscribe/dotnetforfreshers http://himabinduvejella.blogspot.com
-
You can achive this with anchors. -------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
I setup anchor tags to link to the other pages and link to those pages using the following code: response.redirect("bottletype.aspx#target") It works good for all but one of the pages. On that page it does not display the entire string in the browser. Instead of http://localhost:1340/CollingwoodWater/bottletype.aspx#target it shows http://localhost:1340/CollingwoodWater/bottletype.aspx So it does not anchor. Why doesn't display "#target" as part of the address?