Hi,
I have label and textboxes in my updatepanel, and a button outside the updatepanel.
On click on the button, the label changes the text every 5 sec, but the textboxes are not updated.
Here is the code
protected void Button3_Click(object sender, EventArgs e)
{
this.Counter1 = 0;
sectionList = (List<String>)Session["sectionList"];
Timer1_Tick(sender, e);
}
protected void Timer1_Tick(object sender, EventArgs e)
{
Label16.Text="Panel refreshed at: " +
DateTime.Now.ToLongTimeString();
// Button2_Click(sender, e);
var line = reader.ReadLine();
var values = line.Split(',');
sectionList = (List<String>)Session["sectionList"];
// i = this.Counter;
Response.Write("counter1" + this ...
Go to the complete details ...