drop down list selection to enable text box
So I have a drop down list with various options, one being other. I want it so that if the user selects user the text box automatically appears. Ive placed the text box in a panel and set the visibility to false then added the following code :
protected void dropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
if (dropDownList.SelectedItem.Value == "other")
pnlText.Visible = true;
else
pnlText.Visible = false;
}
however it doesn't work, when i select other from the drop down list the text box doesn't appear.
Related Article: How to create formatted text box
is a Web Development discussion thread by dagtad that has 3 replies, was last updated 10 months ago and has been tagged with the keywords: formatted, text, box.
coder91
Junior Poster in Training
94 posts since Oct 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0
Did you set enable autopostback for the dropdown list?
JorgeM
Industrious Poster
4,021 posts since Dec 2011
Reputation Points: 297
Solved Threads: 548
Skill Endorsements: 115
No I hadn't, as soon as I posted I realised I hadn't set it. Got it working now.
coder91
Junior Poster in Training
94 posts since Oct 2012
Reputation Points: 0
Solved Threads: 0
Skill Endorsements: 0
great, good to hear you resolved it and that you confirmed that the autopostback fixed the problem so others that have a similar issue can benefit.
JorgeM
Industrious Poster
4,021 posts since Dec 2011
Reputation Points: 297
Solved Threads: 548
Skill Endorsements: 115