我正在尝试使用 javascript 从客户端访问 web 服务。我已经成功创建了 web 服务。我已经成功地在网站项目中使用它,但它是 Web 应用程序项目。
这是我的 HTML 代码
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script type="text/javascript">
function Test() {
WebService1.HelloWorld(onS, onF);
}
function onS(r) { alert("Result"); }
function onF(er) { alert("Error"); }
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference InlineScript="true" Path="~/WebService1.asmx"/>
</Services>
</asp:ScriptManager>
<input type="button" value="Call Service" onclick="Test()" />
</div>
</form>
</body>
</html>
这是Web服务代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace TestWebService
{
/// <summary>
/// Summary description for WebService1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
}
现在这段代码不起作用。
我正在使用框架 3.5 和 VS2012。