我正在做一个项目,在注册页面中,我想通过 google API 在下拉列表中获取所有国家/地区的列表。我使用了cultureInfo,但它只获得了unik 127 个国家的列表。我想使用谷歌地图 API。谁能告诉我我需要在控制器、视图和模型中做什么或需要什么?我有一个注册页面的视图
@model Retail_MVC.Models.registration
@{
Layout = null;
}
<div class="my_wrapper">
<div class="my_left_box">
@Html.LabelFor(model => model.username)
</div>
<div class="my_right_box">
<input type="text" id="txtusername" name="UserName"/>
</div>
</div>
-- here i want to get dropdownlist for all countries--