| Author: arun kumar 04 Jul 2008 | Member Level: Silver | Rating: Points: 6 |
1.You should write MaintainScrollPositionOnPostback here: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" MaintainScrollPositionOnPostback="true" Inherits="Default3" %>
2.For tabindex in a sequential order Even after dropdownlist control's post back: protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { TextBox5.Focus();//that is tab index will move to your next control }
|
| Author: chandramohan 05 Jul 2008 | Member Level: Gold | Rating: Points: 1 |
1.You should write MaintainScrollPositionOnPostback here: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" MaintainScrollPositionOnPostback="true" Inherits="Default3" %>
2.For tabindex in a sequential order Even after dropdownlist control's post back: protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { TextBox5.Focus();//that is tab index will move to your next control }
|