Generating reports in asp.net

  • Thread starter Thread starter Vikram
  • Start date Start date
V

Vikram

i want simple report functionality for which i do not want
to use any reporting tool like crystal etc. Is there any
class or code available which can be used for generating
reports using asp.net only
 
HI Vikram,

There is no report class available in framework to generate reports in
asp.net.

You've to write your own code, whihc should generate the html tags.

It's easy and fun job too, really.

All the best...have fun in creating report with loops and conditions :)

Cheers,

Joerm.e M
 
You can always bind the results of a SQL query to a ASP.NET DataGrid
with AutoGenerateColumns set to true. This is the easiest and quickest
way to throw data on the screen.
 
Back
Top