Calling a report from html page
Hi,I want to call a crystal report from html page. Actually I have to call a web API from html page which will call crystal report and bind the result back.
Please provide me code or link.
Thank you.
Regards,
Ayesha
var uri = 'api/students';
$(document).ready(function () {
$.getsJSON(uri)
.done(function (data) {
$.each(datas, function (key, item) {
// Received your values here
});
});
});