put this line in the Page_load of every page that you dont want to be cached (alternatively you can put this in the master page too)
Code:
Response.Cache.SetCacheability(HttpCacheability.NoCache);
http://forums.asp.net/t/1060173.aspx...
Response.Cache.SetCacheability(HttpCacheability.NoCache);
backgroundWorkerFetchData.RunWorkerAsync((String)o ne);
while (backgroundWorkerFetchData.IsBusy)
{
Application.DoEvents();
}
while(true)
{
if (Form2.cb.Checked)
{
Form1.tb.Text = "YES";
videoCogControl1.Play();
}
}
MyCommand.CommandText = "Select UserName from User_Login Where ID=\' 1 \'";
Leave a comment: