代码如下 | 复制代码 |
<script type="text/javascript"> function showHint(str) { var xmlhttp; if (str.length==0) { document.getElementById("txtHint").innerHTML="对不起,您的用户名不能为空"; return; } if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("txtHint").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","check_name.aspx?q="+str,true); xmlhttp.send(); }<input id="tuname" runat="server" onblur="showHint(this.value)" style="font-size:20px;" class="texbox15" /> <asp:Label ID="txtHint" runat="server" Font-Size="13px" ForeColor="#33CC33"></asp:Label> |
初学Ajax 感觉这个效果还是非常实用的
代码如下 | 复制代码 |
string qq = Request.QueryString["q"].ToString(); string sql = "select * from CC_BASE_INFO where LOGIN_NAME='" + qq + "'"; classDb db = new classDb(); SqlDataReader dr = db.returndr(sql); if (dr.Read()) { Response.Write("<a style='color:Red'>" + "对不起,该用户名已经存在!" + "</a>"); } |
这里是一个简单的判断用户名是否可用的操作,也可大家分享下。顺便做个笔记
时间: 2024-09-15 17:53:59