Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Participant
858 Points
171 Posts
Mar 01, 2008 10:01 AM|LINK
The simple way I think is in the first Dropdown list' selected event write the following code(two DropdownList DDL1, DDL2)
protected void DDL1_SelectedIndexChanged(object sender,EventArgs e)
{
DDL2.Attributes.Add("onload","javascript:this.focus();");
}
krishnaprasa...
Participant
858 Points
171 Posts
Re: DropDownList Focus is Lost!!!
Mar 01, 2008 10:01 AM|LINK
The simple way I think is in the first Dropdown list' selected event write the following code(two DropdownList DDL1, DDL2)
protected void DDL1_SelectedIndexChanged(object sender,EventArgs e)
{
DDL2.Attributes.Add("onload","javascript:this.focus();");
}
MCTS