通過將控件放入到updatepanel中,實現(xiàn)局部刷新。
前臺代碼:
復制代碼 代碼如下:
asp:ScriptManager ID="ScriptManager1" runat="server">
/asp:ScriptManager> //必須有且寫在updatepanel前面
asp:updatepanel runat="server" id="updatepanel1">
contenttemplate>
asp:textbox runat="server" id="txtname">/asp:textbox>
asp:button runat="server" id="btn" text="檢測" onclick="btn_click">/asp:button>
asp:label runat="server" id="tip">/asp:label>
/contenttemplate>
/asp:updatepanel>
后臺代碼:
復制代碼 代碼如下:
protected void btn_Click(object sender, EventArgs e)
{
if (this.txtname.Text == "user1")
{
this.tip.Text = "用戶名已存在";
}
else
{
this.tip.Text = "用戶名可用";
}
}
您可能感興趣的文章:- UpdatePanel和jQuery不兼容 局部刷新jquery失效
- vs.net控件updatePanel實現(xiàn)無刷新的方法
- asp.net UpdatePanel實現(xiàn)無刷新上傳圖片