Follow these steps Add a first reference of Quartz.dll in your web application. Create a function which you want to execute repeatedly on a scheduled time. Call the created function in same class example
1 2 3 |
public void Execute(IJobExecutionContext context) { this.ScheduledTask(); } |
Create a job (ex:name JobScheduler)(Function).…