Depending on the dropdown value text box has to be displayed

Posted by Chaithragm under C# on 3/7/2013 | Points: 10 | Views : 2745 | Status : [Member] | Replies : 4
Dropdown List contains many values..
--banglore--
--Mysore--
--other--
if i select other in the dropdown a text box has to display
and the value given in the text box must come to dropdownlist




Responses

Posted by: Karthikreddy on: 3/7/2013 [Member] Starter | Points: 25

Up
0
Down
use this code

 

protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
{
TextBox.visible=false;
}
}
protected void DropDownList1_TextChanged(object sender, EventArgs e)
{
if (DropDownList1.SelectedValue == "Others")
{
TextBox3.Visible = true;

}

}
protected void Button2_Click(object sender, EventArgs e)
{
DropDownList1.Items.Add(TextBox3.Text);
}


k@rth!k
karthikreddy08a50@gmail.com

Chaithragm, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Rimi1289 on: 3/7/2013 [Member] Starter | Points: 25

Up
0
Down
You can display the "Textbox" using JQuery.

$('#ddl').blur(function() {
if ($("#ddl").val() == "other") $('#txt').show();
});


Chaithragm, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Chaithragm on: 3/7/2013 [Member] Starter | Points: 25

Up
0
Down
can u please explain in detail how to use these jquery.. to dropdownlist

Chaithragm, if this helps please login to Mark As Answer. | Alert Moderator

Posted by: Jayakumars on: 3/8/2013 [Member] [MVP] Bronze | Points: 25

Up
0
Down
hi
chaithragm
try this code.

<script>
$(document).ready(function () {
$("#drp1").change(function () {
$("#TxtPassword").css("visibility", "Hidden");
});
});
</script>



Mark as Answer if its helpful to you

Kumaraspcode2009@gmail.com

Chaithragm, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response