admin管理员组文章数量:1341422
Is there any way to call web services from javascript? I know you can add in a script manager to pull in the web services but I can't figure out how to access the functions from javascript once I've done that.
Thanks,
Matt
Is there any way to call web services from javascript? I know you can add in a script manager to pull in the web services but I can't figure out how to access the functions from javascript once I've done that.
Thanks,
Matt
2 Answers
Reset to default 11Please see Calling Web Services from Client Script in ASP.NET AJAX:
This topic explains how to use to call a Web service from ECMAScript (JavaScript). To enable your application to call ASP.NET AJAX Web services by using client script, the server asynchronous munication layer automatically generates JavaScript proxy classes. A proxy class is generated for each Web service for which an
<asp:ServiceReference>
element is included under the<asp:ScriptManager>
control in the page.
See Using jQuery to Consume ASP.NET JSON Web Services by Dave Ward.
$(document).ready(function() {
$.ajax({
type: "POST",
url: "RSSReader.asmx/GetRSSReader",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Hide the fake progress indicator graphic.
$('#RSSContent').removeClass('loading');
// Insert the returned HTML into the <div>.
$('#RSSContent').html(msg.d);
}
});
});
本文标签: aspnetHow can I call web service methods from javascriptStack Overflow
版权声明:本文标题:asp.net - How can I call web service methods from javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743644193a2515227.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论