This example is outdated, you can check out the many other new examples in this category. This example shows how to load a report from the server-side. First of all, load scripts:
<script src="/scripts/stimulsoft.reports.js" type="text/javascript"></script>
<script src="/scripts/stimulsoft.viewer.js" type="text/javascript"></script>

Next, create GetReport file:
public partial class GetReport : System.Web.UI.Page
{
	protected void Page_Load(object sender, EventArgs e)
	{
		// Get the report ID
		var reportId = Page.Request.QueryString["id"];
		if (!string.IsNullOrEmpty(reportId))
		{
			// Calculate the path to the report file
			var reportPath = Server.MapPath(string.Format("Reports/{0}.mrt", reportId));
			if (File.Exists(reportPath))
			{
				// Load report to the buffer
				var buffer = File.ReadAllBytes(reportPath);

				// Sent a report to the client side as JSON data
				this.Response.ClearContent();
				this.Response.ClearHeaders();
				this.Response.ContentType = "application/json";
				this.Response.ContentEncoding = Encoding.UTF8;
				this.Response.AddHeader("Content-Length", buffer.Length.ToString());
				this.Response.BinaryWrite(buffer);
				this.Response.End();
			}
		}
	}
}

Then, create a new report instance and load report from server:
<script type="text/javascript">
	// Create a new report instance and load report from server
	var report = new Stimulsoft.Report.StiReport();
	report.loadFile("GetReport.aspx?id=<%= DropDownList1.SelectedValue %>");

...

Finally, show report in the viewer:
...

	// View report in Viewer
	var options = new Stimulsoft.Viewer.StiViewerOptions();
	var viewer = new Stimulsoft.Viewer.StiViewer(options);
	viewer.report = report;
</script>

In the screenshot below you can see the result of the sample code:

Loading a Report from the Server-Side

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.