Click here to Skip to main content
15,904,155 members

Comments by suryaswathi (Top 55 by date)

suryaswathi 20-Sep-11 1:53am View    
in windows application able to create scheduled tasks..becox scheduled tasks need a proj in exe format..in web application what to do?
suryaswathi 14-Sep-11 2:20am View    
public void timerTickEvent(DateTime emailsenddate)
{
UpdatePanel upanel = new UpdatePanel();


System.Timers.Timer time = new System.Timers.Timer();
string TodayDatetime = DateTime.Now.ToLongTimeString();
time.Start();
time.Interval = 600000;


if (DateTime.Now == emailsenddate)
emailSend();
}

In that function i want to modify anything for call emailsend on emailsenddate ehich has date
suryaswathi 14-Sep-11 2:19am View    
public void timerTickEvent(DateTime emailsenddate)
{
UpdatePanel upanel = new UpdatePanel();


System.Timers.Timer time = new System.Timers.Timer();
string TodayDatetime = DateTime.Now.ToLongTimeString();
time.Start();
time.Interval = 600000;


if (DateTime.Now == emailsenddate)
emailSend();
}

is it correct or want o modify for emaildate has date and emailsend was sendmail on the date ..how i have to change
suryaswathi 14-Sep-11 2:01am View    
here i want o use timer know .in ur code where is timer ..where timer tick event everything?
suryaswathi 13-Sep-11 8:17am View    
hi sir i tried the code ..but i dono exactly the program thatsy posted..