使用HTML AJAX消费ASP .Net Web服务

时间:2015-04-19 09:32:35

标签: c# jquery asp.net ajax web-services

我试图使用在单独的HTML文件中编写的JQuery AJAX调用来调用ASP .NET WebService的简单hellowworld函数,即ASP .NET中的非aspx文件。 这是我的AJAX调用的代码,它在基于aspx的Web客户端中运行良好。

$.ajax({
            type: "POST",
            url: "/Test1/RSSReader.asmx/GetRSSReader",
            data: "{}",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                $("#output").text(msg.d);
            },
            error: function (e) {
                $("#output").html("WebSerivce error " + e.responseText);
            }
        });

我想使用.html文件调用相同的webservice和相同的方法,但它返回错误。我尝试提供服务器地址,即localhost,但仍然没有响应。

0 个答案:

没有答案