程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> 使用updatepanel局部刷新實現注冊時對用戶名的檢測示例

使用updatepanel局部刷新實現注冊時對用戶名的檢測示例

編輯:ASP.NET基礎

通過將控件放入到updatepanel中,實現局部刷新。
前台代碼:
復制代碼 代碼如下:
<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 = "用戶名可用";
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved