手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >使用updatepanel局部刷新实现注册时对用户名的检测示例
使用updatepanel局部刷新实现注册时对用户名的检测示例
摘要:通过将控件放入到updatepanel中,实现局部刷新。前台代码:复制代码代码如下://必须有且写在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="检测"></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局部刷新实现注册时对用户名的检测示例】相关文章:

asp.net读取excel文件的三种方法示例

asp.net下配置数据源时出现: 未将对象引用设置到对象的实例。

.Net 如何限制用户登录的方法

在asp.net下实现Option条目中填充前导空格的方法

asp.net实现在线音乐播放器示例

应用Response.Write实现带有进度条的多文件上传

ASP.NET程序中用Repeater实现分页

使用ajax局部刷新gridview进行数据绑定示例

使用pdfbox实现pdf文本提取和合并功能示例

asp.net下用url重写URLReWriter实现任意二级域名的方法第1/2页

精品推荐
分类导航