如何使用ASP MVC和SQL中不同View的参数将记录添加到表中

时间:2013-05-16 07:57:25

标签: c# sql-server asp.net-mvc-3 visual-studio-2010

我正在使用C#和SQL Server 2005开发ASP .Net MVC 3应用程序。

我也在使用Entity Framework和Code First Method。

我想在我的基地的“Gamme”表中添加一条记录。

问题在于,用于填写表的参数是从不同视图中获取的。

这是模型 Gamme

namespace MvcApplication2.Models
{
    public class Gamme
    {
        [Key]
        [Column(Order = 0)]
        [ForeignKey("Profile_Ga")]
        public string ID_Gamme { get; set; }
        [Key]
        [Column(Order = 1)]
        [ForeignKey("Poste")]
        public string ID_Poste { get; set; }
        public int Position { get; set; }
        public int Nbr_Passage { get; set; }
        public string Last_Posts { get; set; }
        public string Next_Posts { get; set; }

        public virtual Poste Poste { get; set; }
        public virtual Profile_Ga Profile_Ga { get; set; }

    }

ID_Gamme 来自视图索引,代码为:

<div><%:Html.Label("Gamme :")%><%: Html.DropDownList("SelectedProfile_Ga", new SelectList(Model.Profile_GaItems, "ID_Gamme", "ID_Gamme"))%> <input type="button" value="Configurer" id="btnShowGestion" /></div> 

其他参数来自局部视图 Gestion.ascx

 <div><%:Html.Label("Poste :")%><%: Html.DropDownList("SelectedPoste", Model.PostesItems)%><input type="checkbox" name="option1" value="Poste Initial" id= "chkMain" onclick="test();"/>Poste Initial<input type="checkbox" name="option2" value="Poste Final" id= "chkFirst" onclick="test2();"/>Poste Final</div>


         <div><%:Html.Label("Nombre de Passage :")%><%: Html.EditorFor(x=>x.YourGammeModel.Nbr_Passage)%></div>
        <div><%:Html.Label("Position :")%><%: Html.EditorFor(x=>x.YourGammeModel.Position)%></div>
        <div><%:Html.Label("Poste Précédent :")%><%: Html.DropDownList("SelectedPoste", Model.PostesItems)%></div>
        <div><%:Html.Label("Poste Suivant :")%><%: Html.DropDownList("SelectedPoste", Model.PostesItems)%></div>
        <div><input type="button" value="Enregistrer" id="btnSave"  /></div>

我尝试在我的控制器中创建一个函数Create但是没有给出正确的结果:

public ActionResult Gestion(FlowViewModel model)
{

     model.YourGammeModel = new Gamme();
     return PartialView(model);
}

[HttpPost]
public ActionResult Create(Gamme gamme)
{
    if (ModelState.IsValid)
    {

        db.Gammes.Add(gamme);
        db.SaveChanges();
        return RedirectToAction("Gestion");  
    }

    return View(gamme);
}

1 个答案:

答案 0 :(得分:2)

如果没有看到确切的代码,很难知道如何加载部分页面等。按钮不会执行任何操作,因为没有与之关联的操作。如果您将其更改为提交,则它将使用HttpPost与主视图激发相同的控制器。

从那里开始我认为问题是因为您的HttpPost操作未正确命名或接受正确的参数。在您的示例中,您应该在HttpGetHttpPost中使用相同的操作名称和ViewModel,因此您可能需要以下内容:

我们假设您的视图名为Index.aspx:

[HttpGet]
public ActionResult Index(FlowViewModel model)
{
    // ...
}

[HttpPost]
public ActionResult Index(FlowViewModel model)
{
    if (ModelState.IsValid)
    {    
        db.Gammes.Add(model.YourGammeModel);
        db.SaveChanges();

        // ...
    }

    // ...
}

然后在PartialView( Gestion.ascx )上,您需要将按钮更改为:<input type="submit" value="Enregistrer" />

最后,如果您希望提交按钮转到主视图以外的某个位置,则需要更改Html.BeginForm代码。所以,假设你的控制器上有一个名为ExampleSave的动作 AnouarController 你会这样做:

<% using (Html.BeginForm("ExampleSave", "Anouar"))