I am passing JSON data to asp.net web form in script. How can I retrieve the id and use in web form
$.ajax({
type: "GET",
url: 'Edit.aspx',
cache: false,
data: ({
id: id,
page: lastDirecotry
}),
success: function (data) {
$("#dialog").html(data);
$("#dialog").dialog("open");
}
});