通过ajax.beginform asp mvc 5

时间:2018-06-30 12:01:19

标签: ajax

我有一个显示类别的下拉列表和另一个显示产品的下拉列表。类别更改时的产品下拉列表填充。我想填写产品并获取客户名称,然后保存到数据库。我想要在Ajax(asp mvc 5)中使用

Category
{
    public int Id { get; set; }
    public string Name { get; set; }
}
Product
{
    public int Id { get; set; }
    public int CategoryId { get; set; }
    public string Name { get; set; }
    public int Price { get; set; }
}
Customer
{
    public int Id {get; set; }
    public string Name {get; set;}
    public int ProductId {get; set;}
}

0 个答案:

没有答案