| Author: eshwar 10 Jul 2008 | Member Level: Silver | Rating: Points: 6 |
Hi Sridharan, Is it that when you select a value in the dropdown list,a dailog box pops up and take the date as input from the user.if so just save the value in a date type variable "d" (say)
then later in the application write a function to keep checking the current date with the saved date in memory "d".if that matches,using the function send the email. you can retrive the value by "d.ToString()".
just like
If(Datetime.Now==d.Tostring()) { ...... Send an Email.... .......... }
but make sure that you use the same date format the user gives in.
Regards,
|