我有这个页面方法(网络方法):
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?