Display PopUp on schedule time and date.
-
I am woring on a scheduler application in asp.net with c#. in this application i have to show popup on scheduled time and date. scheduled time and date store in sql server table and popup contains. can any one help me how can i open popup on specified date and time. thanks
-
I am woring on a scheduler application in asp.net with c#. in this application i have to show popup on scheduled time and date. scheduled time and date store in sql server table and popup contains. can any one help me how can i open popup on specified date and time. thanks
through window service u can do it. But will not be web application. because to open the pop up the application should be in running state. and we can not ensure a web application is in running state. for this u can put the timer in your application. pick the time from database. then calculate the time span with system Time. and Initialize the timer Tick property. start the timer. and pop up the window on Timer_tick Event.
-
through window service u can do it. But will not be web application. because to open the pop up the application should be in running state. and we can not ensure a web application is in running state. for this u can put the timer in your application. pick the time from database. then calculate the time span with system Time. and Initialize the timer Tick property. start the timer. and pop up the window on Timer_tick Event.
Hi It would be great if you can send across the sample code. This will help me a lot. I am new to this and hence your help would be grealty appreciated. Thanks in advance. Awaiting for a positive response from you.