ajax AjaxPro.2.dll 使用
时间:2010-11-24 来源:fffdc
2.在web.config文件中的<system.web>
<httpHandlers>
<add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, Ajaxpro.2"/>
</httpHandlers
基本设置已完成
使用
3.前台
<script>
function CheckUser()
{
var result=Login.isRight('admin','123456');
alert(result.value);
}
</script>
<input type="button" value="testajax" onclick="CheckUser()" />
4.后台
4.1
protected void Page_Load(object sender, EventArgs e)
{
//注册ajax
if(!Page.IsPostBack)
{
AjaxPro.Utility.RegisterTypeForAjax(typeof(Login));
}
}
4.2
//判断用户名密码是否正确
[AjaxPro.AjaxMethod]
public int isRight(string userName, string userPwd)
{
int count = 0;
try
{
count = bll.Exists(userName,userPwd);
}
catch (Exception)
{
throw;
}
return count;
}