Consider the following scenario. Currently a .Net application is used to generate reports. The end user needs the reports twice in a day.So he runs the application at scheduled time for report generation.
Now the client wants to automate this process such that the application should become a scheduled task at the desired time of the client.That is, the client need not run the application every time he needs. When the IIS starts, the application should initiate itself and generate the reports at scheduled time.
Placing the code in Application_Sta rt event handler of Global.asax will not help here since it needs the application to be run for the purpose of report generation. Do you have any idea where to and how to code so that the application will generate reports once the IIS starts?
Thanks and regards
Raghul
Now the client wants to automate this process such that the application should become a scheduled task at the desired time of the client.That is, the client need not run the application every time he needs. When the IIS starts, the application should initiate itself and generate the reports at scheduled time.
Placing the code in Application_Sta rt event handler of Global.asax will not help here since it needs the application to be run for the purpose of report generation. Do you have any idea where to and how to code so that the application will generate reports once the IIS starts?
Thanks and regards
Raghul
Comment