I made one scheduler in c# mvc but I want to execute it on particular day of week.I also want to execute only one time at that day and it should not repeat again at same day.I am unaware about how to do it so so please can anyone help me with scheduling task on particular day of week. I used. Net framework v4. 0
Asked
Active
Viewed 343 times
-1
-
You can either use inbuilt windows task scheduler directly or if you want to schedule it programmatically, use TaskScheduler package – Varghese Mathai Apr 08 '19 at 14:09
1 Answers
-1
Look at the DateTime class, in particular the DayOfWeek property. That should give you what you need.

Steve Todd
- 1,250
- 6
- 13
-
#Steve Todd is it possible to do same thing from web. Config? do you know how? – shah harshil Apr 08 '19 at 15:29