C
Chumley Walrus
I've been trying to put an automatic 20 second refresh on an .aspx page
(that derives from a mobilewebform in VisualStudio.Net and MMIT), but
none of the below work :
<HEAD>
<NOSCRIPT>
<META HTTP-EQUIV="Refresh" CONTENT="20; URL=main.aspx">
</NOSCRIPT>
</HEAD>
<BODY onload=setTimeout("location.href='main.aspx'",10000)>
----
<meta http-equiv="refresh" content="20">
----
C#
(in private void Page_Load(object sender, System.EventArgs e)
{
if (!Page.IsPostBack)
//{
// PopulateFields();
//}
Response.AppendHeader("Refresh", "20; URL=main.aspx");
}
(that derives from a mobilewebform in VisualStudio.Net and MMIT), but
none of the below work :
<HEAD>
<NOSCRIPT>
<META HTTP-EQUIV="Refresh" CONTENT="20; URL=main.aspx">
</NOSCRIPT>
</HEAD>
<BODY onload=setTimeout("location.href='main.aspx'",10000)>
----
<meta http-equiv="refresh" content="20">
----
C#
(in private void Page_Load(object sender, System.EventArgs e)
{
if (!Page.IsPostBack)
//{
// PopulateFields();
//}
Response.AppendHeader("Refresh", "20; URL=main.aspx");
}