服务器端控件ajax请求
2021-04-08 20:28
标签:ash ons empty 服务器 cti 内容 member public error 服务器端控件ajax请求 标签:ash ons empty 服务器 cti 内容 member public error 原文地址:https://www.cnblogs.com/shy1766IT/p/12455902.html
$("#")或 $("[id$=‘txtTo‘]")
$.ajax({
url: ("Demo.aspx?timestamp={0}").format(new Date().getTime()),
type: ‘POST‘,
dataType: ‘json‘,
timeout: 10000,
data: {
action: "GetUserByPhone",
phoneNumber: phone.val()
},
success: function (result) {
if (result.mes == "1") {
$("#").val(result.strMemberName);
}
else {
location.href = ‘FastRegistration.aspx?NodeID=1029&phone=‘ + phone.val();
}
}
$("#").val(result.strUserId);
},
error: function () {
$("#").val("");
$("#").val("");
}
});
string action = this.Request.Form["Action"];
if (!String.IsNullOrEmpty(action))
{
//发送短信验证码
this.Response.Clear();
this.Response.ContentType = "application/json";
string writeText = string.Empty;
switch (action)
{
case "GetUserByPhone":
writeText = this.GetUserByPhone();
break;
default:
break;
}
this.Response.Write(writeText);
this.Response.End();
}
$.ajax({
type: "POST", //提交方式
url: "/Demo/Testing.ashx", //提交的页面/方法名
data: null, //参数(如果没有参数:null)
success: function (data) {
//返回的数据用获取内容
error: function (err) {
});
//刷新session
public class Testing: IHttpHandler, System.Web.SessionState.IRequiresSessionState
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string set = context.Session["Setting"].ToString();
{
context.Session["Setting"] = 1;
}
else
{
context.Session["Setting"] = 0;
}
context.Response.Write("1");
}
$.ajax({
type: ‘POST‘,
async: false,
url: "../Handler/CheckPhone.ashx",
data: { "mobile": phone.val(), "Action": "addCompensate" },
success: function (a) {
num = a;
if (a == 0) {
$("#txtMobileTip").text(‘‘);
return false;
}
}
});
public class CheckMobile : IHttpHandler,System.Web.SessionState.IRequiresSessionState
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string action = context.Request["Action"];
switch (action)
{
case "addCompensate":
CheckInBaseInfo(context);
break;
default:
break;
}
}
{
Maticsoft.BLL.Promoter.PromoterBaseInfo bllInfo = new BLL.Promoter.PromoterBaseInfo();
if (bllInfo.GetModelByMobile(context.Request["mobile"])!=null)
{
context.Response.Write("1"); //存在
}
else
{
context.Response.Write("0"); //不存在
}
}
上一篇:odoo12安装Wkhtmltopdf打印出pdf已损坏
下一篇:js函数大全