如何从asp.net中的Web用户控件调用Web服务?

时间:2013-03-20 10:55:43

标签: c# asp.net json web-services webusercontrol

我有一个网络用户控件,我想从中调用网络服务。我的主要动机是什么:

1。我正在为高级搜索创建一个Web用户控件,因为我将绑定的字段和按钮[Edit,Delete]动态添加到gridview。 2.现在我正在使用ajax进行编辑和删除(有特定的理由去采用这种方法,因为我已经提到过我正在动态添加boundfields和按钮,因为我首先清除所有网格列然后添加现在如果按钮的点击触发然后它的帖子返回页面,这使得按钮将从网格中消失,所以我想使用Json)

这是我的网格代码::

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CellPadding="4"
                BorderWidth="1px" ForeColor="#333333" GridLines="None">
                <AlternatingRowStyle BackColor="White" />
                <FooterStyle BackColor="#990000" ForeColor="White" Font-Bold="True" />
                <HeaderStyle Height="30px" BackColor="#990000" Font-Bold="True" ForeColor="White" />
                <PagerStyle ForeColor="#333333" HorizontalAlign="Center" BackColor="#E2E2E2" />
                <RowStyle CssClass="test" BackColor="#E2E2E2" Height="25px" BorderWidth="1px" ForeColor="#333333" />
                <SelectedRowStyle BackColor="#E2E2E2" Font-Bold="True" ForeColor="Navy" />
                <SortedAscendingCellStyle BackColor="#FDF5AC" />
                <SortedAscendingHeaderStyle BackColor="#4D0000" />
                <SortedDescendingCellStyle BackColor="#FCF6C0" />
                <SortedDescendingHeaderStyle BackColor="#820000" />
            </asp:GridView>

以下是Json调用的代码

$('.DeleteButton').live('click', function () {
        alert('hellllo');
        $.ajax({
            url: '<%=ResolveUrl("~/Control/WebService/WebService.asmx/HelloWorld") %>',
            data: "{ }",
            dataType: "json",
            type: "POST",
            contentType: "application/json;charset=utf-8",
            success: function () {
                alert('hi;');
            },
            error: function () {
                alert('Record could not be deleted. \n Please try again later. hye');
            },
            failure: function () {
                alert('Record could not be deleted. \n Please try again later. hello');
            }
        });
    });

我总是收到以下错误:

500内部错误 请帮助我摆脱这个问题,我被困在过去2天。

3 个答案:

答案 0 :(得分:0)

500内部错误 - 从中​​可以猜出是:
不要使用

var html = '<%=ResolveUrl("~/Control/WebService/WebService.asmx/HelloWorld") %>';

改为使用:

var html= '<%=ResolveUrl("full path /Control/WebService/WebService.asmx/HelloWorld") %>';

var html = '<%=ResolveUrl("../../Control/WebService/WebService.asmx/HelloWorld") %>';

答案 1 :(得分:0)

如果您使用chrome浏览器进行调试,请执行以下操作:

  1. 按F12
  2. 打开开发人员(如果名称错误,请更正我)面板
  3. 将标签设置为“网络”标签
  4. 调用方法
  5. 如果发生内部服务器错误500,那么您将在底部的某处找到带有红色字体的记录。您可以使用其中指定的URL进行调试。那里的信息也为您提供了回复信息。

    此外,您可以尝试使用激活到Web服务的visual studio调试来调试服务。然后尝试调用webservice以查看它是否捕获任何异常。

答案 2 :(得分:0)

我已经为我解决了以下问题:

Jquery代码是:

$(document).ready(function () {
$('.DeleteButton').live('click', function (e) {
    var td = $(this).parent('td').parent('tr');
    if (confirm('Do you want to delete this record?')) {
        var Index = $(this).attr('id');
        var pos = Index.indexOf("_");
        var position = Index.indexOf("_");
        while (pos > -1) {
            pos = Index.indexOf("_", pos + 1);
            if (pos > -1) {
                position = pos;
            }
        }
        Index = Index.substr(position + 1);

        var Id = $(this).attr('alt');
        var TableName = $('[id$=hdfTableName]').val();
        var PrimaryKey = $('[id$=hdfPrimaryKey]').val();

        $.ajax({
            type: "POST",
            url: "Search.aspx/DeleteRecord",
            data: "{ 'Id': '" + Id + "','TableName':'" + TableName + "','PrimaryKey':'" + PrimaryKey + "' }",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                if (msg.d == '1') {
                    td.hide();
                    $('.lblMessage').addClass("SuccessMessage");
                    $('.lblMessage').text('Record is deleted sucessfuly.');
                    $('.lblMessage').delay('5000').fadeOut('10000');
                } else {
                    $('.lblMessage').addClass("ErrorMessage");
                    $('.lblMessage').text('There is some error, while deleting the record.');
                    $('.lblMessage').delay('5000').fadeOut('10000');
                }
            }
        });
    }
});
$('.EditButton').live('click', function (e) {
    var Id = $(this).attr('alt');
    window.location.href = 'Default.aspx?id=' + Id + '';
});

});

我从下面的页面调用了Web方法:

[WebMethod]
public static string DeleteRecord(string Id, string TableName, string PrimaryKey)
{
    String result = "";
    try
    {
        Id = "'" + Id + "'";
        clsSearch objSearch = new clsSearch();
        result = objSearch.DeleteRecord(TableName, PrimaryKey, Id);
        result = "1";
    }
    catch (Exception ex)
    {
        result = ex.Message;
    }
    return result;
}

顺便感谢你的回复......