var _id = $('#HFProductId').val();;
$.ajax(
{
type: "POST",
contentType: "application/json; charset=utf-8",
url: "EntryForm.aspx/insertData",
data: {},
dataType: "json",
success: function (data)
{
function getid(prod_id)
{
$.ajax({
type: "POST",
url: "EntryForm.aspx/GetDetails",
data: "{ 'Product_Id': '" + prod_id + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response)
{
// BindTable(response.d);
console.log(prod_id);
},
failure: function (msg)
{
// alert(msg);
}
});
}