HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "Refresh";
meta.Content = "2;url=StudentList.aspx";
this.Page.Controls.Add(meta);
---------------------
redirecting of page from one to another with meta
protected void btn_cancel_Click(object sender, EventArgs e)
{
#region redirectbtmeta
HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "Refresh";
meta.Content = "1;url=StudentList.aspx";
this.Page.Controls.Add(meta);
#endregion
}
No comments:
Post a Comment