Quite correct! Excellent job, kaarthik!
On Feb 1, 12:45 pm, Kaarthik Padmanabhan <[email protected]> wrote: > You could dynamically add to the page header (in your code behind), the meta > content using HtmlMeta on whichever child page you want. > Example: > > protected void Page_Load(object sender, EventArgs e) > { > HtmlMeta meta = new HtmlMeta(); > > meta.HttpEquiv = "REFRESH"; > meta.Content = "10"; > > Page.Header.Controls.Add(meta); > > } > > -- > Kaarthik,http://coding-passion.blogspot.com
