How can I get back to the same position of a page on postback. It always seems to get to the top of the page.
postback
I\'ve tried using maintainSc
maintainSc
Try this. It's working for me.
if (Page.IsPostBack) { ScriptManager.RegisterClientScriptBlock(Page, this.GetType(), "CallJS", "afterpostback();", true); }