TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
sankalp shrotriya
NA
10
6.9k
timer in asp.net
Jan 17 2014 7:31 AM
my timer is stops after 28 mins and i dont want stop it anyone know how could it is possible. timer code is:
void Application_Start(object sender, EventArgs e)
{
General.conn_string = ConfigurationManager.ConnectionStrings["Calling_care"].ConnectionString;
// Code that runs on application startup
System.Timers.Timer myTimer = new System.Timers.Timer();
// Set the Interval to 1 minute (5 sec = 5000 milliseconds).
myTimer.Interval = 60000;
myTimer.AutoReset = true;
myTimer.Elapsed += new ElapsedEventHandler(myTimer_Elapsed);
myTimer.Enabled = true;
//general.insert_value_for_string("insert into tbl_test(appstart)values(getutcdate())");
}
Reply
Answers (
2
)
Integrate Gtalk in Web OR Windows Application.
fileupload