使用HTTPS网址调用WebMethod

时间:2016-09-07 17:18:55

标签: c# asp.net azure web webmethod

C#side

[WebMethod]
public static string IsLoadComplete()
{
    return LoadComplete.ToString();
}

JS方面

PageMethods.IsLoadComplete(function (state) {
    if(state == "True")
    {
      [...]
    }
});

如果我测试在VS中运行一切正常。 当我在Azure上发布并使用HTTPS时,“状态”始终为false。

可以使用HTTPS调用WebMethod吗?

0 个答案:

没有答案