Microsoft Corporation Question:
Download Job Interview Questions and Answers PDF
How yuo can create Drop Down Combos in HTML? select Tag?
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
<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 Interview Questions And Answers
PDF
Previous Question | Next Question |
Can you please explain the difference between Dim Object as object AND dim obj as myform? | Can you please explain the difference between web service and web application? |