Artur Carvalho
Artur Carvalho

Reputation: 7167

How to schedule a batch process in asp.net

I want to run a weekly batch process in an asp.net page. How can that be done?

Thanks

Upvotes: 2

Views: 4923

Answers (3)

user176731
user176731

Reputation:

Develop a Windows Service and schedule it to run weekly once.

Upvotes: 1

Nathan
Nathan

Reputation: 12300

Is there any known drawbacks with the solution?

Here is the blog post in which Jeff Atwood discusses this approach. As with most of Jeff's post, the meat is in the comments where the pros and cons have been discussed in extreme detail by a large number of opinionated folks, so that is an ideal place to have that particular part of your question answered.

Upvotes: 3

Brett Veenstra
Brett Veenstra

Reputation: 48474

Consider using the Cache.

Upvotes: 2

Related Questions