Pages

About Me

My photo
ForEach(Minute in MyLife) MyExperience ++;

Monday, June 6, 2011

Redirect page automatically using c#

HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "Refresh";
meta.Content = "3; URL=Emp_Task_List.aspx";
Page.Header.Controls.Add(meta);

3 is the time duration in seconds
URL is d url to where to redirect

No comments:

Post a Comment