是否可以通过URL(从浏览器,没有ajax)调用页面方法(ASPX)?

时间:2017-06-09 16:30:24

标签: c# asp.net webforms

我有这个页面方法(网络方法):

public partial class MyTest : System.Web.UI.Page
{
    [WebMethod]
    [ScriptMethod(UseHttpGet = true, ResponseFormat = ResponseFormat.Xml)]
    public static string Greeting()
    {
        return "Hi!";
    }
}

是否可以在浏览器中输入MyTest.aspx/Greeting并获取实际字符串?它通过Ajax(方法GET)工作,但似乎不能直接从浏览器工作(而是返回.aspx页面)。

我了解MVC / Web Api,但我无法使用它们。

相关问题:

Possible to invoke ASMX service with parameter via url query string?

Testing a web method (with browser/Fiddler)

0 个答案:

没有答案