例如,将模型传递给具有三个不同值的单选按钮

时间:2011-03-23 15:29:36

标签: asp.net-mvc-2 radiobuttonlist html.radiobuttonlist

<%: Html:RadioButtonListFor(model=>model.Country, Model.Countries, new {@class="countrytype"})%>

这些国家有三个价值美国,加拿大,其他。但我希望默认选择美国。我怎么能这样做?

我的ActionResult是:

public ActionResult Select(CountryModel m) 
{
    // ... 
    return View( new CountryModel ( countrytype.AsQuicklist()); 
}

如何在返回视图中添加模型参数?

0 个答案:

没有答案