Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I need to generate report every day in my web page.The report must be generated automatically.
i googled a lot ...but still i can't get clear ideas. any help, thoughts greatly appreciated.


post some links,references etc...
Posted
Updated 2-Sep-13 23:27pm
v2

1 solution

You can set a chron job, e.g. a url that will generate the daily report. The chron job is set at the web server, and you can set the timespan (every hour, every day, etc) to call the url.

Alternatively, you could set a trigger in the Global.asax file (e.g. the Application_BeginRequest event) where it will check if the report of the day is created or not. If not, you could call the function that creates the report.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900