What Is The Best Way To Print Simple Reports From ASP.NET Applications
-
What is the best way to produce and print simple reports from an ASP.NET application? I have an application hosted on a public web site (public hosting company), and would like to print simple reports without using such things as Crystal Reports since I have no access to the web server machine. You could point me to any useful source for printing reports via an ASP.NET application.
-
What is the best way to produce and print simple reports from an ASP.NET application? I have an application hosted on a public web site (public hosting company), and would like to print simple reports without using such things as Crystal Reports since I have no access to the web server machine. You could point me to any useful source for printing reports via an ASP.NET application.
I think the simplest is to format a "report" (e.g. a gridview of data on a web page) in your .aspx page, then let the user use the browser's print function.
-
I think the simplest is to format a "report" (e.g. a gridview of data on a web page) in your .aspx page, then let the user use the browser's print function.