Hello, I have a page with a multiview, on the multiview on view 0 I have a gridview and on view 1 I have a form with some textboxes to male posible filter the gridview.
The gridview is bound automatically every 10 seconds with a timer tick. The problem is that every time the tick event is fired and If I am on view 1, writing on any textbox the focus is lost.
Is there any way to fix this?
protected void TimerControl1_Tick(object sender, EventArgs e)
{
if (mv.ActiveViewIndex == 0)
{
Cargar();
}
}