JQuery Ajax在.net里面的使用(判断用户名是否存在)

来源:互联网 发布:重生之星际淘宝主yoyo 编辑:程序博客网 时间:2024/05/17 20:35
1、请求页面AJax.aspx
txtName" type="text" />button" value="查看用户名是否存在" id="btn" onclick="JudgeUserName();" />
showResult" style="float:left">
2.JS代码
3
<script type="text/javascript" src="CSS/jquery-1.3.2.js">script>     <script type="text/javascript">        function JudgeUserName()        {            $.ajax({            type:"GET",            url:"AjaxUserInfoModify.aspx",            dataType:"html",            data:"userName="+$("#txtName").val(),            beforeSend:function(XMLHttpRequest)                {                    $("#showResult").text("正在查询");                    //Pause(this,100000);                },            success:function(msg)                {                       $("#showResult").html(msg);                    $("#showResult").css("color","red");                },           complete:function(XMLHttpRequest,textStatus)                {                    //隐藏正在查询图片                },          error:function()               {                    //错误处理               }            });        }     script>

2 、页面AjaxUserInfoModify.aspx
后台代码

protected void Page_Load(object sender, EventArgs e)    {        string userName = Request.QueryString["userName"].ToString ();        if (userName == "James Hao")        {            Response.Write ("用户名已经存在!");        }        else        {            Response.Write ("您可以使用此用户名!");        }} 
原创粉丝点击