Making the page back to the same position...

How can I make the web page comeback to the same position on a postback

Like I have a dropdown at the end of the page, and when I change the selected value it calls a function, after that it come back to the top of the page, and not to the end..

Thanks




Answer this question

Making the page back to the same position...

  • David Gwynn-Jones

    Set the page's SmartNavigation attrbiute to true

    <%@Page SmartNavigation="true" %>


  • Making the page back to the same position...