On selecting dropdown list a value is displayed on the textbox but the cursor position is on the beginning of textbox. But I need to show it after the value on the textbox.
protected void drgBranches_SelectedIndexChanged(object sender, EventArgs e)
{
txtLoginName.Text = drgBranches.SelectedValue;
txtLoginName.Focus();
}
It works fine in google chrome and IE. But it doesn't work on Firefox.