UpdatePanel里面用锚点定位的问题
数据绑定到GridView之后,用锚点定位到GridView头部。不用UpdatePanel是正常的,用了之后,先是定位到GridView头部。之后(1~2秒)又回到页面的最上面了。
--------------------编程问答-------------------- up
//要定位到'scroll'控件。
ScriptManager.RegisterStartupScript(UpdatePanel1, GetType(), "scroll", "document.getElementById('scroll').scrollIntoView();", true);
补充:.NET技术 , ASP.NET