Client-Side TextBox Population From DDL

  • Thread starter Thread starter Fred
  • Start date Start date
F

Fred

On an aspx page I have a textbox and a drop-down list. When the user selects
an item in the drop-down list, I want the text of that item to appear in the
textbox. How can I accomplish this client-side?
 
Fred said:
On an aspx page I have a textbox and a drop-down list. When the user selects
an item in the drop-down list, I want the text of that item to appear in the
textbox. How can I accomplish this client-side?


You can use some JavaScript on the onchange event of the DDL.
 
Back
Top