ASP .NET MVC 3 DropDownListFor问题
在模型中,我有:
public Guid? Country
{ get; set; }
在视图中,我有:
@Html.DropDownListFor(m => m.Country, (SelectList)ViewBag.Countries)
提交时,发生错误,因为它想将字符串保存到 Guid。如何保存下拉列表的值而不是文本?
In the Model, I have:
public Guid? Country
{ get; set; }
In the View, I have:
@Html.DropDownListFor(m => m.Country, (SelectList)ViewBag.Countries)
When submitting, error occures, cause it wants to save the string to the Guid. How to save the value rather then the text of the drop down list?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。用一点不同的方法让它工作。
模型:
控制器:
视图:
另外,你需要实现这个扩展
Ok. Got it working with a little bit of a different approach.
Model:
Controller:
View:
Also, you need to implement this extension