我正在尝试运行基本测试以使 Hello World 从 WebService.asmx 页面运行,但我通过调试发现它甚至没有到达 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>