使用updatepanel局部刷新实现注册时对用户名的检测示例

2019/7/7 18:27:31

本文主要是介绍使用updatepanel局部刷新实现注册时对用户名的检测示例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

通过将控件放入到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 = "用户名可用";
  }
}


这篇关于使用updatepanel局部刷新实现注册时对用户名的检测示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


暂无数据...
扫一扫关注最新编程教程