Job Scheduling

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I have a WebForms app. There are a number of rather large reports available. What I would like to be able to do is to have a user select their reporting options in a WebForm abd also be able to schedule the report to be run at a later time and have the output e-mailed to them
Does anyone have an example or a link I can find out more about doing something like this.
Thanks
john
 
I would set up a Windows Service application with a means of getting
information in (your choice here). You can then have the service set up the
queues at the proper time and email the report. This is probably the
easiest. You can also have the reports queued up in SQL Server and have a
service check every X minutes/hours for queued items.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************************************************
Think outside the box!
***************************************************************
John said:
Hi,
I have a WebForms app. There are a number of rather large reports
available. What I would like to be able to do is to have a user select
their reporting options in a WebForm abd also be able to schedule the report
to be run at a later time and have the output e-mailed to them.
 
Back
Top