$('#btnGetDetails').click(function(){
var tr = $(lnk).closest('tr');
var Id = $(tr).find('td').eq(1).html();
$.ajax({
url: "/Home/Index",
type: "GET",
data: { 'GetId': Id },
contentType: "application/json;charset=UTF-8",
dataType: "json",
success: function (result) {
$('#file').attr(result.photoPath);
alert(result.photoPath)
},
});
});
Narasimha pPosted Jul 30, 2020, 12:34 AM
Darshan ShahPosted Jul 30, 2020, 12:29 AM