View Html report generated by SqlServer query in Html div
function callServerProfileView(IDProfile, idOpUnit) {
$.ajax({
type: "POST",
url: GetAppPath() + "/WebServices/Profile/ProfileServices.asmx/GetProfileFromID",
data: "{idProfile:'" + IDProfile + "',idOpUnit:'" + idOpUnit + "' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
async: false,
success: function (msg) {
$("#divProfile").html(msg.d);
},
error: function (xhr, msg) {
console.log(msg);
$("#divProfile").hide();
}
});
}