I have two textbox
one store username and second store password
as
Textbox1.Text=ds.tables[0].rows[0]["username"];
Textbox2.attribute["value"]= ds.tables[0].rows[0]["password"];
i have added a required field validator on these textboxes
After updating my record on submit button..i clear the
both TextBoxes as
Textbox1.Text=" ";
Textbox2.attribute["value"]=" ";
now the problem is that after updating record the required field validator
set focus on TextBox2 showing mesage password required but not on TextBox1.
i don't want required field validator to focus on TextBox2.
Thanks & Regards,
Alokssm