我正在尝试运行基本测试以从WebService.asmx页面运行Hello World,但我通过调试发现它甚至没有到达WebService.asmx页面中的页面方法。我已经工作了大约一整天,我非常感谢你的帮助。这是我的代码。
[WebMethod]
public static string HelloWorld()
{
return "Hello World";
}
function test() {
$.ajax({
type: "POST",
url: "EmployeesWebService.asmx/HelloWorld",
data: "{}",
success: OnSuccess,
failure: OnFailure,
error: OnError
});
}
我尝试了很多这方面的变化,但我一直都会遇到错误。我也没有注释[System.Web.Script.Services.ScriptService]。
还有我的web.config
<configuration>
<connectionStrings>
<add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Scheduling.mdf;Integrated Security=True;User Instance=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>
</configuration>
答案 0 :(得分:2)
你需要放括号,你也应该放一个结果格式。将方法属性更改为此...
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
[WebMethod()]