automatic action
-
Hello All! In almost all the job sites we can see an intersting mechanism - when ever a suitable job for a candidate is found it is automatically emailed to the candidate, that is it automatically checks the jobs that have been arrived, match the profile of the job with the profile of the candidate and if the profile matches it is automatically emailed to the candidate. How is it possible to execute a particular code automatically at a certain interval of time in ASP.NET? Please help. Thanks in advance.
-
Hello All! In almost all the job sites we can see an intersting mechanism - when ever a suitable job for a candidate is found it is automatically emailed to the candidate, that is it automatically checks the jobs that have been arrived, match the profile of the job with the profile of the candidate and if the profile matches it is automatically emailed to the candidate. How is it possible to execute a particular code automatically at a certain interval of time in ASP.NET? Please help. Thanks in advance.
Hello, I do not know of a way to do this through ASP.NET...at least nothing that will scale well. But there are some other fairly simple way to do it: 1) put the code that you want automated into a console app. And use window's scheduled tasks to run the console app at regular intervals. 2) build a window app with a timer. Then use the timer to trigger the code. 3) (harder) build a windows service with a timer. Which is best depends a lot on the specifics of your situation... Hope this helps, Bill
-
Hello, I do not know of a way to do this through ASP.NET...at least nothing that will scale well. But there are some other fairly simple way to do it: 1) put the code that you want automated into a console app. And use window's scheduled tasks to run the console app at regular intervals. 2) build a window app with a timer. Then use the timer to trigger the code. 3) (harder) build a windows service with a timer. Which is best depends a lot on the specifics of your situation... Hope this helps, Bill
Use SQL Server notification also. With ASP.NET it could simply be checking when the info is submitted for any matches.
-
Use SQL Server notification also. With ASP.NET it could simply be checking when the info is submitted for any matches.