I have a html file need to refresh every 10 seconds, so I have this line in html :
meta http-equiv="Refresh" content="10; url=Default.aspx"
In my C# code I have this :
public partial class _Default : System.Web.UI.Page<Br>
{
public static List<String> Active_User_List=
new List<String>(), User_List_To_Remove;
public static int Refresh_In_Seconds=10;<Br>
..
}
How to replace the 10 with the variable "Refresh_In_Seconds" ?