单击锚标记时如何在服务器端获取 href 值

how to get href value in Server side when click the anchor tag

我有一个 table 每行都包含锚标记,当单击锚 link 我使用 jquery 获取 href 值并在隐藏字段中绑定 href 值,在同时我想在服务器端传递隐藏字段值..!

单击锚标记时如何传递隐藏字段值,这可能吗..? 或者建议其他方式

使用jquery like

获取href值
   $(document).ready(function () {
                    $('.info_link').click(function () {
                        var href = $(this).attr('href');
                        getHREFValue(href);
                    });
                });

然后使用Ajax将href值传递给服务器端

                function getHREFValue(data) {
                    $.ajax({
                        type: "POST",
                        dataType: "json",
                        contentType: "application/json; charset=utf-8",
                        data: "{'HrefValue':'" + data + "'}",
                        url: "./List.aspx/Insert",
                        success: function (Record) {

                            if (Record.d == true) {
                                console.log("Success");
                            }
                            else {
                                console.log("Failure");
                            }
                        },
                        error: function (error) {
                            console.log(error);
                        }
                    });
                }