码迷,mamicode.com
首页 > Web开发 > 详细

Ajax练习:使用jQuery验证用户名是否存在

时间:2014-07-15 09:42:32      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   使用   

1.页面部分


用户名:<asp:TextBox ID="txtId" runat="server"></asp:TextBox>

<asp:Label ID="lblShow" runat="server" ForeColor="Red"></asp:Label>

2.编写javascript脚本部分

<script type="text/javascript" src="Scripts/jquery-1.4.1.js"></script>

<script type="text/javascript">
$(function () {
$("#txtId").blur(function () {
var a = $("#txtId").val();
$.ajax({
type: "post",
url: "Handler1.ashx",
data: { m: a },
success: function (result) {
var res = result.toString();
$("#lblShow").html(res);
}
});
});
});
</script>

3.ashx中代码

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string Name = context.Request.Params["m"].ToString();

            if (AdminManager.nameIsExist(Name) == ture)
            {
                context.Response.Write("此用户名已被注册!");
            }
            else
            {
                context.Response.Write("此用户名可以使用!");
            }
        }

 

Ajax练习:使用jQuery验证用户名是否存在,布布扣,bubuko.com

Ajax练习:使用jQuery验证用户名是否存在

标签:style   blog   http   java   color   使用   

原文地址:http://www.cnblogs.com/xyangs/p/3843926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!