0

ASP.NET MVC でドロップダウンリストを作成する関数があります。

 public static MvcHtmlString countryDropDown(this HtmlHelper helper, string name, string optionLabel, object selectedValue)
    {
        XmlDocument doc = new XmlDocument();
        doc.Load(HttpContext.Current.Server.MapPath("~/App_Data/countries.xml"));

        StringBuilder b = new StringBuilder();

        b.Append(string.Format("<select name=\"{0}\" id=\"{0}\">", name));
        if (!string.IsNullOrEmpty(optionLabel))
            b.Append(string.Format("<option value=\"\">{0}</option>", optionLabel));

        foreach (XmlNode node in doc.SelectNodes("//country"))
        {
            string selected = string.Empty;
            if (node.Attributes["name"].Value == selectedValue as string)
            {
                selected = "selected=\"selected\"";
            }
            b.Append(string.Format("<option value=\"{0}\" {2}>{1}</option>", node.Attributes["name"].Value, node.Attributes["name"].Value, selected));
        }
        b.Append("</select>");

        return MvcHtmlString.Create( b.ToString());
    }

この関数を Create および Edit ビューで次のように使用します。

  @Html.countryDropDown("Country"," ", ViewData["Country"])

国のリストは完全に表示されますが、編集ページで保存された値を選択しないことが問題です。編集ページで値を選択できるようにコードを変更する方法。

4

1 に答える 1

0

を使用して解決

 @Html.countryDropDown("Country"," ", ViewData.Eval("Country"))

それ以外の

 @Html.countryDropDown("Country"," ", ViewData["Country"]
于 2012-04-18T11:07:55.407 に答える