1.在靜態頁面中加入文字方塊及樣式和js腳本的引用:
//輸入文字時文字方塊樣式
txtname.keyup(function(){
var name=$(this).val();
if(name=="")
$(this) .addClass("txtName");
else $(this).removeClass("txtName");
})
//失去焦點時驗證使用者名稱是否可用
$("#txtName ").blur(function()
{
var name=$(this).val();
$.get("validator1.aspx?name=" name,null,function(response) {
$("#result").html(response);
})
})
, EventArgs e)
{
string name = Request.QueryString["name"].ToString(); Response.Write("該使用者名已經存在! >