JavaScript Function to Detect a DropdownListItem

sureshcd10

Regular
Joined
Dec 25, 2003
Messages
77
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
:( :( :(
 
Last edited:
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...
 
Back
Top