*Experts* Bucky Posted October 24, 2002 *Experts* Posted October 24, 2002 At the bottom of a Web Form, I have a calendar control for (this is really stretching it) choosing a date. Whenever the calendar is clicked on, the page refreshes, but the page is all the way back at the top of the page again when it's refreshed. I've created an anchor (calendar), but how can I scroll to it when the page loads? I've tried Private Sub clnNewDue_SelectionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles clnNewDue.SelectionChanged Response.Redirect(Request.Url.PathAndQuery & "#calendar") End Sub when a date is selected, but no cigar. :( Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
*Gurus* Derek Stone Posted October 24, 2002 *Gurus* Posted October 24, 2002 In cross-page links anchors don't work as they should (at least in IE). The best suggestion I can offer to you is to keep the page-length relatively short, so the user doesn't have to scroll. Quote Posting Guidelines
*Experts* Bucky Posted October 27, 2002 Author *Experts* Posted October 27, 2002 That's what I was afraid of. I guess I'll rearrange the page and put the form at the top. Thanks Derek. Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.