Bucky
Well-known member
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 its
refreshed.
Ive created an anchor (calendar), but how can I scroll to it when
the page loads? Ive tried
when a date is selected, but no cigar.
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 its
refreshed.
Ive created an anchor (calendar), but how can I scroll to it when
the page loads? Ive tried
Code:
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.