Click here to Skip to main content
15,879,053 members
Please Sign up or sign in to vote.
1.24/5 (3 votes)
Hi,

I am using Asp.net , Vs2008.

How to display alert message on timer tick event using asp.net.

please help...

Regards
Mukesh
Posted
Comments
Thanks7872 24-Sep-13 7:52am    
Please stop Non questions and try using google.

1 solution

Try:
C#
ScriptManager.RegisterStartupScript(this, GetType(), "keyName", "alert('your message');", true);
inside the Tick event.
You'll have to place a ScriptManager inside the form tag to make it work.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900