从视图中检索值并将其保存在ASP MVC 3中的列表中

本文关键字:ASP 存在 MVC 列表 保存 检索 视图 | 更新日期: 2023-09-27 18:14:11

我正在使用c#和SQL Server 2005开发一个asp.net MVC 3应用程序。

我也使用实体框架和代码第一方法。

我想保存的值选择或输入在我的视图(在表单)在一个局部变量。

所以我在视图模型中创建了一个列表:

public List<Gamme> ListG = new List<Gamme>();

我现在想从视图中检索值,并放入这个列表的对象:

public Gamme A = new Gamme (........);

这是输入值的视图:

<% using (Html.BeginForm("Save", "Anouar")) { %>
<%: Html.ValidationSummary(true) %>
<fieldset class="parametrage">
    <legend>Gestion de Gamme</legend>
    <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("PostePrecedentSelected", Model.PostesItems)%></div>
    <div><%:Html.Label("Poste Suivant :")%><%: Html.DropDownList("PosteSuivantSelected", Model.PostesItems)%></div>

    <div><input type="submit" value="Enregistrer" id="btnSave"  /></div>
    </fieldset>

更新:FlowViewModel:

private static Dictionary<string, Gamme> userGammes;
        public static Dictionary<string, Gamme> UserGammes
        {
            get
            {
                if (userGammes == null)
                {
                    userGammes = new Dictionary<string, Gamme>();
                }
                return userGammes;
            }
        }

和视图的控制器:

public ActionResult Save(Gamme gamme)
         {
             UserGammes.Add("currentUserID", gamme);
         }

从视图中检索值并将其保存在ASP MVC 3中的列表中

在你的控制器,而不是保存在数据库中,你可以把一个静态字典…并在不再需要时使用"Singleton"模式清除它:

private static Dictionary<string, Gamme> userGammes;
public static Dictionary<string, Gamme> UserGammes
{
    get 
    {
       if (userGammes== null)
       {
          userGammes = new Dictionary<string, Gamme>();
       }
       return userGammes;
    }
}

和控制器

public ActionResult Save(Gamme gamme)
{
    UserGammes.Add("currentUserID", gamme);
    // ... do stuff
}