Click here to Skip to main content
15,891,976 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: change the content of the page without refreshing Pin
Abhijit Jana5-Jul-09 20:58
professionalAbhijit Jana5-Jul-09 20:58 
GeneralRe: change the content of the page without refreshing Pin
slSoftware5-Jul-09 21:32
slSoftware5-Jul-09 21:32 
GeneralRe: change the content of the page without refreshing Pin
Abhijit Jana5-Jul-09 21:36
professionalAbhijit Jana5-Jul-09 21:36 
GeneralRe: change the content of the page without refreshing Pin
slSoftware5-Jul-09 21:47
slSoftware5-Jul-09 21:47 
GeneralRe: change the content of the page without refreshing Pin
DoctorMick5-Jul-09 23:23
DoctorMick5-Jul-09 23:23 
AnswerRe: change the content of the page without refreshing Pin
Blue_Boy5-Jul-09 20:47
Blue_Boy5-Jul-09 20:47 
GeneralRe: change the content of the page without refreshing Pin
slSoftware5-Jul-09 21:28
slSoftware5-Jul-09 21:28 
AnswerRe: change the content of the page without refreshing Pin
Abhijit Jana5-Jul-09 20:55
professionalAbhijit Jana5-Jul-09 20:55 
I am agree what Blue_Boy suggested. You have to use AjaX Update Panel and TimerControl.

Bellow if the codesnippet, where I am updating the lblComments Value after a specific time

<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer_Tick">
                                 </asp:Timer>  
               <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                     <Triggers>
                           <asp:AsyncPostBackTrigger ControlID="Timer1" />
                     </Triggers>
                           <ContentTemplate>
                                 <asp:Label ID="lblComments" runat="server"></asp:Label>
                        </ContentTemplate>
               </asp:UpdatePanel>

In the code behind

protected void Timer_Tick(object sender, EventArgs e)
      {
        
         // Set the label content data.
      }

cheers,
Abhijit
CodeProject MVP
Web Site:abhijitjana.net
View My Recent Article

GeneralRe: change the content of the page without refreshing Pin
Blue_Boy5-Jul-09 21:04
Blue_Boy5-Jul-09 21:04 
GeneralTo whom who vote it 1 Pin
Abhijit Jana5-Jul-09 21:35
professionalAbhijit Jana5-Jul-09 21:35 
GeneralRe: To whom who vote it 1 Pin
Blue_Boy5-Jul-09 21:42
Blue_Boy5-Jul-09 21:42 
GeneralRe: To whom who vote it 1 Pin
Abhijit Jana5-Jul-09 21:47
professionalAbhijit Jana5-Jul-09 21:47 
GeneralRe: To whom who vote it 1 Pin
Blue_Boy5-Jul-09 21:58
Blue_Boy5-Jul-09 21:58 
GeneralRe: change the content of the page without refreshing Pin
slSoftware5-Jul-09 21:35
slSoftware5-Jul-09 21:35 
Questionaccess drop down list on details view Pin
sacwchiri5-Jul-09 20:19
sacwchiri5-Jul-09 20:19 
AnswerRe: access drop down list on details view Pin
Ibrahim Bello5-Jul-09 23:32
Ibrahim Bello5-Jul-09 23:32 
GeneralRe: access drop down list on details view Pin
sacwchiri6-Jul-09 3:09
sacwchiri6-Jul-09 3:09 
GeneralRe: access drop down list on details view Pin
Ibrahim Bello6-Jul-09 6:14
Ibrahim Bello6-Jul-09 6:14 
QuestionUnable To view tree view in website Pin
Sanket.Patil5-Jul-09 20:16
Sanket.Patil5-Jul-09 20:16 
QuestionSecuring Client Side Page Pin
vinodkrebc5-Jul-09 20:14
vinodkrebc5-Jul-09 20:14 
AnswerRe: Securing Client Side Page Pin
himanshu25615-Jul-09 21:01
himanshu25615-Jul-09 21:01 
AnswerRe: Securing Client Side Page [modified] Pin
Abhijit Jana5-Jul-09 21:45
professionalAbhijit Jana5-Jul-09 21:45 
GeneralRe: Securing Client Side Page Pin
himanshu25615-Jul-09 21:55
himanshu25615-Jul-09 21:55 
GeneralRe: Securing Client Side Page Pin
Abhijit Jana5-Jul-09 23:01
professionalAbhijit Jana5-Jul-09 23:01 
GeneralRe: Securing Client Side Page Pin
Abhijit Jana7-Jul-09 11:03
professionalAbhijit Jana7-Jul-09 11:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.