получить значение href, используя jquery, например
$(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);
}
});
}