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

Submitted by: Administrator
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
Submitted by: Administrator

Read Online Microsoft Basics Job Interview Questions And Answers