📄 ajaxmethod,app_code.ashx
字号:
addNamespace("AjaxMethod");
AjaxMethod_class = Class.create();
AjaxMethod_class.prototype = (new AjaxPro.Request()).extend({
GetCode: function(code, callback) {
return this.invoke("GetCode", {"code":code}, callback);
},
GetUserName: function(type, uname, callback) {
return this.invoke("GetUserName", {"type":type, "uname":uname}, callback);
},
GetUserEnable: function(type, uname, callback) {
return this.invoke("GetUserEnable", {"type":type, "uname":uname}, callback);
},
GetUserPwd: function(type, uname, pwd, callback) {
return this.invoke("GetUserPwd", {"type":type, "uname":uname, "pwd":pwd}, callback);
},
checkTopicContent: function(topicContent, callback) {
return this.invoke("checkTopicContent", {"topicContent":topicContent}, callback);
},
checkTopicPoint: function(userID, topicPoint, callback) {
return this.invoke("checkTopicPoint", {"userID":userID, "topicPoint":topicPoint}, callback);
},
checkEmail: function(email, callback) {
return this.invoke("checkEmail", {"email":email}, callback);
},
checkTopicLength: function(content, callback) {
return this.invoke("checkTopicLength", {"content":content}, callback);
},
initialize: function() {
this.url = "/ajaxpro/AjaxMethod,App_Code.ashx";
}
})
AjaxMethod = new AjaxMethod_class();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -