Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create a reminder service?

Status
Not open for further replies.

ruxshin

Programmer
Apr 26, 2001
33
FI
Hi,

I'm developing a web-based calendar. I want to create a reminder feature, which will remind the user about a forthcoming event on a user-specified time interval. Is there a way to do this using ASP or VBScript?

I know that it is possible with ColdFusion using its scheduling engine. Is it possible for ASP?


ruxshin
 
It depends what sql engine you use. If you use Microsoft Sql
server it has support for sending mail directly with xp_sendmail. all you have to do is to create a procedure with the logic of your needs. After that you make a job who execute this procedure as often as you like.

If you don't have sql server or don't wont to make use of it you may use Windows scripting host to call your asp page. The wsh may be programmed to be executed periodicly with the nt command "at".
 
Hi,

My web-based calendar is meant for multiple users. A user will schedule an activity or event and then can set a reminder (email or windows pop-up) to remind him of the forthcoming event. How do I make use of the WSH to achieve this? How do I call the WSH from the ASP page where the user configure the reminder? Is the nt command "AT" able to schedule reminder once, daily, weekly, or at a specified time?


ruxshin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top