How do I set an ASP.NET page to auto-refresh every x seconds?
>From a google search I found that the <meta> tag will help me do this.
<meta http-equiv="refresh" content="300">
My problem is, my web site uses master pages and I need only one child
page to have this auto-refresh feature. Obviously, I cannot use this
<meta> tag on the master page. My child page looks like this
------------------------------------
<%@ Page Language="VB"
MasterPageFile="~/MasterPage.master"
AutoEventWireup="false"
CodeFile="childPage.aspx.vb"
Inherits="childPage" title="Child Page Title" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
</asp:Content>
------------------
I cannot find the right place to put the <meta> tag here, since this
page is embedded inside the master page html.
Thanks
R Wenlee