sureshcd10 Posted July 21, 2005 Posted July 21, 2005 (edited) I have one TextBox say txtBox1 followed by a DropdownList --ddl1 and another textBox2 below that. Now the user types a name into textBox1 and then selects one Item from the dropdown list.Now if the selected dropdownItem's index is 2 I want to copy textBox1.Text to TextBox2.Text. other wise TextBox2.text is to be cleared. Can some one urgently help me with a javascript function to do this ? Iam using asp.net with VB.net coding :( :( :( Edited July 21, 2005 by sureshcd10 Quote ima
sureshcd10 Posted July 21, 2005 Author Posted July 21, 2005 I solved the problem by using the folloing Javascript function Thank u all I solved the problem by using the folloing Javascript function <script language="javascript"> <!-- function ddlChangeFunction() { if(document.Form1.cboRelationship.value == 1) { document.Form1.txtPatientFName.value=document.Form1.txtApplicantFName.value; document.Form1.txtPatientLName.value=document.Form1.txtApplicantLName.value; } else { document.Form1.txtPatientFName.value=""; document.Form1.txtPatientLName.value=""; } } //--> </script> Than u alll... Quote ima
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.