Asp.net Ajax timed refresh page

Source: Internet
Author: User
To regularly refresh the page, use the timer control. <asp: timer interval = "5000" runat = "server"/>
You need to configure the trigger for the time control. If the trigger event is triggered, the updatepanel will refresh the page. The attributes to be configured for the trigger include controlid and eventname. The following is an example.

<% @ Page Language = "C #" %>
<! Doctype HTML public "-// W3C // dtd xhtml 1.0 transitional // en"
Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>
<SCRIPT runat = "server">
Protected void page_load (Object sender, eventargs e ){
Currenttime. Text = datetime. Now. tolongtimestring ();
}
</SCRIPT>
<HTML xmlns = "http://www.w3.org/1999/xhtml">
<Head id = "head1" runat = "server">
<Title> ASP. NET Ajax </title>
</Head>
<Body>
<Form ID = "form1" runat = "server">
<Asp: scriptmanager id = "scriptmanager1" runat = "server">
</ASP: scriptmanager>
<Asp: timer id = "fiveseconds" interval = "5000" runat = "server"/>
<Asp: updatepanel id = "updatepanel1" runat = "server">
<Contenttemplate>
<Asp: Label id = "currenttime" runat = "server"/>
</Contenttemplate>
<Triggers>
<Asp: asyncpostbacktrigger controlid = "fiveseconds" eventname = "tick"/>
</Triggers>
</ASP: updatepanel>
</Form>
</Body>
</Html>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.