尝试在Web方法中访问查询字符串值

时间:2018-01-18 04:44:24

标签: c# asp.net webmethod

我试图将querystring值从clickview上的gridview项之一传递到另一个网页'Uncoated_wire.aspx.cs',这里我想在web方法'GetCustomers'.how中使用该值来实现这一点。 tad.aspx

<script type="text/javascript">
        $(function () {
            $("#THistory").click(function (event) {               
                event.preventDefault();
                $("#pdfFormInsideL1").hide();
                document.getElementById('<%=gvCustomers.ClientID%>').style.display = 'block';
                //$("#gvCustomers").show();
                $("#gvCustomers").attr("visibility", "visible");
                $.ajax({
                    type: "POST",
                    url: "TDC.aspx/GetCustomers",
                    data: '{}',
                    contentType: "application/json; charset=utf-8",
                    dataType: "json",
                    success: OnSuccess,
                    failure: function (response) {
                        alert(response.d);
                    },
                    error: function (response) {
                        alert(response.d);
                    }
                });
            });
            function OnSuccess(response) {
                var xmlDoc = $.parseXML(response.d);
                var xml = $(xmlDoc);
                var customers = xml.find("Table");
                var row = $("[id*=gvCustomers] tr:last-child").clone(true);
                $("[id*=gvCustomers] tr").not($("[id*=gvCustomers] tr:first-child")).remove();
                $.each(customers, function () {
                    var customer = $(this);
                    //$("td", row).eq(0).html($(this).find("TDC_NO").text());
                    $("td", row).eq(0).find("a").text($(this).find("TDC_NO").text());
                    ***$("td", row).eq(0).find("a").attr("href", "Uncoated_Wire.aspx?Id=" + $(this).find("TDC_NO").text()).attr('target', '_blank');***                    
                    $("td", row).eq(1).html($(this).find("REVISION").text());
                    $("td", row).eq(2).html($(this).find("REVISION_DATE").text());
                    $("td", row).eq(3).html($(this).find("P_GROUP").text());
                    $("[id*=gvCustomers]").append(row);
                    row = $("[id*=gvCustomers] tr:last-child").clone(true);
                });
            }
        });
        </script>

突出显示的星标代码行用于将值传递到另一个网页uncoated_wire.aspx.cs

protected void Page_Load(object sender, EventArgs e)
    {
        string TDC_NO_VAL = Request.QueryString["Id"];
        hdn_val.Value = TDC_NO_VAL;
}


 [WebMethod]
        public static string GetCustomers()
    {
 hdn_val.Value = TDC_NO_VAL;
    }

在这个web方法中,我想访问该查询字符串参数如何做到这一点。任何想法都会受到赞赏

1 个答案:

答案 0 :(得分:0)

尝试使用此代码从WebMethod获取查询字符串。

[WebMethod]
public static string GetCustomers()
{
    string strId = HttpContext.Current.Request.QueryString["Id"];
    //dosomething    
}

希望这有帮助!