来自数据库的MVC DropDownList

时间:2017-04-30 09:36:33

标签: database drop-down-menu

我是c#和MVC的新手,这是我的问题:

对于我的新网站,我希望在我的标题中有一个DropDownList,以便访问者可以选择货币。

我有一个名为CurrencyList的SQL服务器表

我有一个名为BaseController的Controller:Controller

我有一个模特:

public partial class CurrencyList 
{
public int CurrencyId { get; set; }
public string CurrencyName { get; set; }
public string CurrencySymbol { get; set; }
public Nullable<decimal> CurrencyValue { get; set; }
public string Currency { get; set; }
public Nullable<System.DateTime> LastUpdate { get; set; }
}

现在,如何在选择中获取数据?我如何管理邮政? 对于我的选择,我将仅使用字段货币,默认情况下将选择EUR。

Onchange,我想将Currency值保存在会话和/或cookie中。

提前致谢。

1 个答案:

答案 0 :(得分:1)

您可以使用Ajax Get方法调用控制器的方法,该方法获取绑定下拉列表的数据