0

I have to Populate DropDown list of Country in MVC application. Where i have to make the Group as per the continent.. Any suggestion Help me alot Thanks

tereško
  • 57,247
  • 24
  • 95
  • 149
sudip
  • 23
  • 1
  • 6

1 Answers1

0

look how to do it in HTML

<select>
   <optgroup label="G1">
    <option value="c1">One</option>
   </optgroup>
   <optgroup label="G2">
    <option value="s1">Two</option>
   </optgroup>
</select>

u can implement by your own like here

Roar
  • 2,087
  • 4
  • 23
  • 35