You must Sign In to post a response.
  • Category: .NET

    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
  • #769617
    Hi
    try this piece of the code



    var uri = 'api/students';
    $(document).ready(function () {
    $.getsJSON(uri)
    .done(function (data) {
    $.each(datas, function (key, item) {
    // Received your values here
    });
    });
    });


    Name : Dotnet Developer-2015
    Email Id : kumaraspcode2009@gmail.com

    'Not by might nor by power, but by my Spirit,' says the LORD Almighty.


  • Sign In to post your comments