本文介绍了我如何填充下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的模特如下
public class 角色
{
public int RoleID { get ; set ; }
public string RoleName { get 跨度>; set ; }
}
我在我的视图中有一个@ html.DropDown控制器。我在sqlserver中有一个表有两列RoleID和RoleName。我将此表中的数据检索到数据集中。如何使用此数据集填充下拉列表。如果我从此下拉列表中选择一个角色,我想将RoleID保存到另一个表dbo.user中。我怎样才能做到这一点。请帮帮我...
谢谢和问候
Kunjammu
解决方案
Hi,
I have a model like below
public class Role { public int RoleID { get; set; } public string RoleName { get; set; } }
and i have a @html.DropDown controller in my view. I have a table in sqlserver having two columns RoleID and RoleName. I retrieved the data from this table into a dataset. How can i populate the Dropdown list using this dataset. if i select a role from this dropdownlist, i want to save RoleID into another table dbo.user. How can i do that. Please Help me...
Thanks and Regards
Kunjammu
解决方案
这篇关于我如何填充下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!