Microsoft Basics Question: Download Microsoft Basics PDF

How to create Drop Down Combos in HTML? select Tag?

Tweet Share WhatsApp

Answer:

Drop down can done through (<select

<option> <option>



if you are creating a drop down for City then
<select name="ddlcity" multiple=true>
<option value="ohio">ohio</option>

<option value="nyc">nyc</option>

In the same way u can create for any thing.In this drop down a person can select more than one choice.If u want a user to restrict to only one value then don't set multiple=true

Download Microsoft Basics PDF Read All 18 Microsoft Basics Questions
Previous QuestionNext Question
Explain Difference between Dim Object as object AND dim obj as myform?Explain the file needed to boot win-xp?