Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi I need some AJAX Time controls, can anybody guide me to get that one!
Posted
Updated 15-Feb-13 1:20am
v2

first I would say what have you tried?[^]
and

FspFriends wrote:
I need some AJAX Time controls

what's the meaning of "some" here.I think this makes your question incomplete.

further this should help you.
Time Picker Ajax Extender Control[^]
Date picker and Time picker in ASP.NET 2.0 using AJAX (with Atlas)[^]
 
Share this answer
 
Comments
fjdiewornncalwe 15-Feb-13 10:40am    
+5.
Abhishek Pant 15-Feb-13 13:38pm    
thanks
You can use a AJAX timer control in asp.net pages like the below

Place the below in your .aspx page

1. You would need a ScriptManager
ASP.NET
<asp:scriptmanager enablepartialrendering="true" id="ScriptManager1" runat="server"> </asp:scriptmanager>


2. Then a Timer control
ASP.NET
<asp:timer id="Timer1" runat="server" interval="300000" enabled="True" >
</asp:timer> 


the Interval specified is in Milliseconds
 
Share this answer
 
v3

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