一、介绍一下Ajax在Asp.Net中的基本使用
1、在工程中引入Ajax.dll文件。
Ajax.dll实现XmlHttpRequest请求服务器的实现细节。.net项目中,添加上对其的引用,就可以进
行相应封装操作了。
2、在web.config中设置HttpHandle
3、在
二、介绍正题-用户登录验证
1、前台Html:
2、引用Js文件
window.onload=function()
{
login=newLogin(testAjax);
}
login.Js文件
//提取控件值
functiongetValueById(pObjID){
varobj=document.getElementById(pObjID);
try{
returnobj.value;
}catch(e){
alert("控件:"+pObjID+"不存在,或没有value属性");
}
}
functionLogin(obj)
{
this.OBJ=obj;
this.GetLogin=function()
{
varreturnValue;
varusername=getValueById('txtUsername');
varpassword=getValueById('txtPassword');
if(!username||!password)
{
alert('请输入用户名与密码!');
return;
}
try
{
returnValue=this.OBJ.Login(username,password).value;
}catch(e)
{
alert('登录出错,请稍后再试或与管理员联系');
}
switch(returnValue)
{
case1:
alert('对不起,您输入的用户名或密码不正确或者不是管理员!');
break;
case0:
alert('管理员登录成功!');
window.document.location.href('../Error.aspx');
break;
default:
alert('登录失败,请稍后再试或与管理员联系'+returnValue);
break;
}
}
}
3、.cs文件
privatevoidPage_Load(objectsender,System.EventArgse)
{
Ajax.Utility.RegisterTypeForAjax(typeof(testAjax));
}
[Ajax.AjaxMethod()]
publicintLogin(stringusername,stringpassword)
{
//管理员登陆入口
Action.Common.CDBcdb=newAction.Common.CDB();
if("admin"==cdb.ExeScalar("selectupowerfromuserswhere
uname='"+username+"'andupwd='"+password+"'"))
return0;
else
return1;
}