我有以下WebMethod
[WebMethod]
public static string InnerGetURL(string accessCode)
{
string newURL;
newURL = (string)HttpContext.Current.Cache[accessCode + "l"];
return newURL;
}
是否可以通过AJAX BUT从JavaScript调用WebMethod而不使用jQuery。我已经设法使用jQuery创建所需的功能,但现在是时候切换到纯JavaScript和AJAX了。
感谢您的帮助!
答案 0 :(得分:0)