ASP.NET AJAX学习
UpdatePanel外的按钮的时间要填充UpdatePanel内的GridView,要将该按钮注册为异步调用,如:
protected void Page_Load(object sender, System.EventArgs e)
{
ScriptManager1.RegisterAsyncPostBackControl(ibGroupFind);
}
数据填充完后还要调用UpdatePanel.Update()
edgUser.DataBind();
upUserGrid.Update()
UpdatePanel中的控件执行后如果要弹出提示框,也需要注册
private void AlertMsg(UpdatePanel up, string sMsg)
{
ScriptManager.RegisterStartupScript(up, this.GetType(), "alertmsg", "alert('" + sMsg + "')", true);
}
if (hRole.Value.Trim() == "" && hUserno.Value.Trim() == "")
{
AlertMsg(upOK, "请先选择源角色或用户");
return;
}
如果页面需要使用脚本定位控件的位置,如果用到了div,则div要位于UpdatePanel的外面,以防止UpdatePanel刷新时控件的位置变化
<DIV id="divUser" style="DISPLAY: inline; Z-INDEX: 102; LEFT: 683px; OVERFLOW: auto; WIDTH: 336px; POSITION: absolute; TOP: 114px; HEIGHT: 413px; border-right: #ccccff 1px solid; border-top: #ccccff 1px solid; border-left: #ccccff 1px solid; border-bottom: #ccccff 1px solid;">
<asp:UpdatePanel ID="upUserGrid" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<enjoyit:enjoyitdatagrid
。。。。。。