Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having a dropdown list in my web page. And it contains two lists. 1. Yes 2.No. If we select yes then the desired text box and label will visible, else it won't be visible. So hw to do this?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can use javascript to do this. Something like

<script type="text/javascript">        
        function ChangeSel(val)
        {
            var tYes = document.getElementById("txtYes");

            if ( val === "1" )
            {
                tYes.style.display = "inline";
            }
            else
            {
                tYes.style.display = "none";
            }
        }        
    </script>

<select id="sel1" onchange="ChangeSel(this.value);">
            <option value="1">Yes</option>
            <option value="2">No</option>
        </select>

<input type="text" id="txtYes" value="" />

See a working demo.

share|improve this answer
I was about to type this :D Great answer! – Pieter Germishuys Mar 11 '10 at 5:23

You can do this using a post to the server side. Note that they use a button to hide the dropdown instead of the other way around, but the concept is the same.

Or you can do this using javascript. Basically you add a javascript function the the ASP:DropDownList's OnChange event.

Also see the tutorials at The official ASP.Net Tutorial Site.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.