Thanks. Just what I was looking for....!
On Jan 31, 11: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
