4

私はプロジェクトに取り組んでおり、登録ページですべての国のリストをドロップダウン リストに表示したいと考えています。コントローラー、ビュー、または必要なもので何をする必要があるかを誰かに教えてもらえますか? 登録ページを見ました

@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
4

4 に答える 4

3

ASP.NET MVC フレームワークにデフォルトで付属する非常に便利なヘルパーが多数ありますが、常に混乱を招くように思われるのは、Html.DropDownListFor() ヘルパー メソッドです。そのため、この投稿では、リストを作成するために使用する手順と、起動して実行した後のファンキーな機能のいくつかについて簡単に説明します。

この例では、国のリストを表示する単一のドロップダウン リストがフォームに表示され、そこから選択して送信できます。

まず、ビューが表示できるデータを決定するコントラクトとなるビュー モデルを構築する必要があります。

public class IndexViewModel
{
    // Stores the selected value from the drop down box.
    [Required]
    public int CountryID { get; set; }

    // Contains the list of countries.
    public SelectList Countries { get; set; }
}

public class HomeController : Controller
{
    [HttpGet]
    public ActionResult Index()
    {
        IndexViewModel viewModel = new IndexViewModel();
        viewModel.Countries = new SelectList(GetCountries(), "ID", "Name");
        return View(viewModel);
    }

    [HttpPost]
    public ActionResult Index(IndexViewModel viewModel)
    {
        viewModel.Countries = new SelectList(GetCountries(), "ID", "Name");
        if (!ModelState.IsValid)
        { return View(viewModel); }

        //TODO: Do something with the selected country...
        CMSService.UpdateCurrentLocation(viewModel.CountryID);

        return View(viewModel);
    }
}

@Html.DropDownListFor(x => x.CountryID, Model.Countries)
@Html.DropDownListFor(x => x.CountryID, Model.Countries, "- please select -")

<link href="@Url.Content("~/Content/themes/base/jquery.ui.all.css")"
  type="text/css" rel="stylesheet" />
<script type="text/javascript" src="@Url.Content("></script>
<script type="text/javascript" src="@Url.Content("></script>
<link type="text/css" rel="stylesheet" href="@Url.Content("~/Content/selectmenu.css")" />
<script src="@Url.Content("~/Scripts/selectmenu.js")" type="text/javascript"></script>
<script type="text/javascript">
   $('select').selectmenu();
</script>
于 2013-01-29T12:25:29.310 に答える
3

CultureInfoを使用する

// Namespaces You need
using System.Globalization;
using System.Linq;

// GetCountries() method
IEnumerable<string> GetCountries()
{
     return CultureInfo.GetCultures(CultureTypes.SpecificCultures)
                       .Select(x => new RegionInfo(x.LCID).EnglishName)
                       .Distinct()
                       .OrderBy(x => x);
}

編集 * ///////////////////////////////////////////// /////////////////////////////////////////////// /////////////////////////////////////////////// ////////////// *

class Country
{
    public string ID { get; set; }
    public string Name { get; set; }
}

IEnumerable<Country> GetCountries()
{
    return CultureInfo.GetCultures(CultureTypes.SpecificCultures)
         .Select(x => new Country
                         {
                             ID = new RegionInfo(x.LCID).Name,
                             Name = new RegionInfo(x.LCID).EnglishName
                         })
                         .GroupBy(c => c.ID)
                         .Select(c => c.First())
                         .OrderBy(x => x.Name);
}
于 2013-01-29T13:13:24.283 に答える
1

以下のようなことを試してみてください...それはあなたを助けます...

HTML ビューの場合:

@{
    var CountryItems = new List<SelectListItem>();
    CountryItems.Add(new SelectListItem { Text = String.Empty, Value = String.Empty });
    foreach (var name in ViewBag.Names)
    {
        CountryItems.Add(new SelectListItem { Text = name, Value = name });
    }
}

@Html.DropDownList("dropDownList", CountryItems)

コントローラー内:

List<string> countries =new List<string>(2);
var dtList = from ctry in objContext.Details
    select ctry;   // Source of Country
foreach (var dt in dtList)
{
    countries.Add(dt.Name);
}
ViewBag.Names = countries ;
return View(dtList);
于 2013-01-29T12:23:30.030 に答える
0

登録モデルで、タイプの国のリストを追加します。明らかに、これは、国のデータタイプがどのように見えるかによって異なります

public List<Countries> Countries { get; set; }

次に、コントローラーで、選択したデータソースから国を割り当てます

registration.Countries = [list_of_country_objects]

そして最後にあなたの見解:

@Html.DropDownList("countries", new SelectList(Model.Countries, "CountryId", "CountryName"
于 2013-01-29T12:23:01.370 に答える