从 JS 调用 ASP.NET Web 服务
我不断寻找有关如何使用 .NET 和 Visual Studio 2010 编写 Web 服务的良好指南,以便我可以使用 AJAX 将其用于基于 HTML 的网站。
我知道有一种称为 ASMX 方式的方法,但现在它已更新为 ServiceHost,因此我需要一个简单的指南,它可以引导我了解如何使用 ServiceHost 对象创建 asp.net Web 服务。
抱歉,如果这听起来模棱两可或幼稚。
I am constantly finding a good guide about how to write a web service using .NET with Visual Studio 2010 so I can utilize it with my HTML based website using AJAX.
I know there was a way called the ASMX way but now it's more updated to ServiceHost so what I need is a simple guide which can drive me through how to create asp.net web service using ServiceHost object.
Sorry if it sounds ambiguous or childish.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ScriptManager 控件放在页面上并添加对您的
.asmx
服务的引用:在您的 Web 服务的代码隐藏中声明您的 Web 方法(注意 ScriptService 属性):
现在您可以通过 Javascript 使用 Web 服务,如下所示:
更新
如果您想通过简单地发送 HTTP GET 请求来使用 Web 服务,那么您可以执行以下操作:
装饰您的 Web 方法/library/bb298830.aspx" rel="nofollow">ScriptMethod 属性:
注意 UseHttpGet 属性设置为
True
。您可能还需要修改web.config
文件以允许这种交互:现在您可以向您的 Web 服务发出简单的 HTTP GET 请求,如下所示(示例使用 jQuery.ajax):
希望这会对您有所帮助。
Place the ScriptManager control on your page and add a reference to your
.asmx
service:In the code-behind of your web-service declare you web method (notice the ScriptService attribute):
Now you can consume the web-service from the Javascript like the following:
UPDATE
If you want to consume the web-service by simply sending an HTTP GET requests then you can do the following:
Decorate your web-method with a ScriptMethod attribute:
Notice the UseHttpGet property which is set to
True
. You probably also need to modify theweb.config
file to allow this kind of interaction:Now you can make a simple HTTP GET request to your web-service like shown below (the example uses jQuery.ajax):
Hope this will help you.