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
  • 58,060
  • 25
  • 98
  • 150
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,117
  • 4
  • 24
  • 39