tags:

views:

966

answers:

5

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

Thanks

+2  A: 

Consider using the Cache.

Brett Veenstra
A: 

@Brett

Thanks for the answer. I think I remember Jeff and Joel talking about something like that some days ago. I«ll give it a try. Is there any known drawbacks with the solution?

Artur Carvalho
+2  A: 

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.

Nathan
+1  A: 

@Nathan

Thanks, that post+comments answered it!

Artur Carvalho
A: 

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

madhu