1

こんにちは、チェックボックスから選択した値をポストメソッドに取得して、データベースコントローラーに挿入する必要があります。これどうやってするの?

My Model Code
-----------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Data.SqlClient;
using System.Data.Entity;
using System.Collections;

namespace Gridview_BugTracker.Models
{
    public class BugTracker_DataHelper
    {

        public static List<BugTracker_DataHelper> GetList{get;set;}

           public int ProjectId { get; set; }
           public string projectName { get; set; }           
           public string Description { get; set; }
           public  string status { get; set; }
           public int EmployeId { get; set; }
           public string EmployeName { get; set; }
           public bool selectChkbox { get; set; }         
      }      

   }

    My Control code
    ------------------------------

     using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using System.Data;
    using Gridview_BugTracker.Models;
    using System.Data.SqlClient;
    using System.Data.Entity;

    namespace Gridview_BugTracker.Controllers
    {
        public class ProjectsController : Controller
        {
            //
            // GET: /Projects/
            /// <summary>
            ///
            /// </summary>
            /// <returns></returns>
            public ActionResult Index()
            {
                var bugedlist = GetList();
                return View(bugedlist);
            }

            /// <summary>
            /// The Bind data in Gridview
            /// </summary>
            /// <returns></returns>
            public List<BugTracker_DataHelper> GetList()
            {
                var modelList = new List<BugTracker_DataHelper>();
                using (SqlConnection conn = new SqlConnection(@"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=BugTracker;Data Source=SSDEV6\SQLEXPRESS"))
                {
                    conn.Open();
                    SqlCommand dCmd = new SqlCommand("Select * from Projects", conn);
                    SqlDataAdapter da = new SqlDataAdapter(dCmd);
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    conn.Close();
                    for (int i = 0; i <= ds.Tables[0].Rows.Count - 1; i++)
                    {
                        var model = new BugTracker_DataHelper();
                        model.ProjectId = Convert.ToInt16(ds.Tables[0].Rows[i]["ProjectId"]);
                        model.projectName = ds.Tables[0].Rows[i]["projectName"].ToString();
                        model.Description = ds.Tables[0].Rows[i]["Description"].ToString();
                        model.status = ds.Tables[0].Rows[i]["Status"].ToString();
                        modelList.Add(model);
                    }
                }
                return modelList;
            }

            /// <summary>
            /// Assign The Project Display
            /// </summary>
            /// <returns></returns>
            [AcceptVerbs(HttpVerbs.Get)]
            public ViewResult AssignProject()
            {

                ViewBag.ProjectId = new SelectList(Assinedwork(), "ProjectId", "projectName");           
                var employees = CheckBoxBindEmpName();
                return View(employees);
            }

            /// <summary>
            /// Assignwork
            /// </summary>
            /// <returns></returns>        
            public List<BugTracker_DataHelper> Assinedwork()
            {
                var modelList = new List<BugTracker_DataHelper>();

                using (SqlConnection assignedconn = new SqlConnection(@"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=BugTracker;Data Source=SSDEV6\SQLEXPRESS"))
                {
                    {
                        assignedconn.Open();
                        SqlCommand Passnedcmd = new SqlCommand("select ProjectId,projectName from Projects", assignedconn);
                        SqlDataAdapter da = new SqlDataAdapter(Passnedcmd);
                        DataSet ds = new DataSet();
                        da.Fill(ds);

                        for (int i = 0; i <= ds.Tables[0].Rows.Count - 1; i++)
                        {
                            var model = new BugTracker_DataHelper();
                            model.ProjectId = Convert.ToInt16(ds.Tables[0].Rows[i]["ProjectId"]);
                            model.projectName = ds.Tables[0].Rows[i]["projectName"].ToString();
                            modelList.Add(model);
                        }
                    }
                    return modelList;
                }
            }

            public List<BugTracker_DataHelper> CheckBoxBindEmpName()
            {
                var modecheckbox = new List<BugTracker_DataHelper>();

                using (SqlConnection assignedconn = new SqlConnection(@"Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=BugTracker;Data Source=SSDEV6\SQLEXPRESS"))
                {
                    {
                        assignedconn.Open();
                        SqlCommand Chkcmd = new SqlCommand("select EmployeId,EmployeeName from EmployeeDetails", assignedconn);
                        SqlDataAdapter Chkda = new SqlDataAdapter(Chkcmd);
                        DataSet chkds = new DataSet();
                        Chkda.Fill(chkds);

                        for (int i = 0; i <= chkds.Tables[0].Rows.Count - 1; i++)
                        {
                            var modelchk = new BugTracker_DataHelper();
                            modelchk.EmployeId = Convert.ToInt16(chkds.Tables[0].Rows[i]["EmployeId"]);
                            modelchk.EmployeName = chkds.Tables[0].Rows[i]["EmployeeName"].ToString();
                            modecheckbox.Add(modelchk);
                        }

                    }
                }
                return modecheckbox;
         }
        }

    }
    My Assinedcode View code
    ------------------------

     <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<Gridview_BugTracker.Models.BugTracker_DataHelper>>" %>

    <!DOCTYPE html>

    <html>
    <head runat="server">
        <title>AssignProject</title>
    </head>
    <body>
        <div>
         <% using (Html.BeginForm()) 
         { %>      
        <%:Html.ValidationSummary(true)%>
         <fieldset>
            <legend>Projects</legend>
                        <%: Html.DropDownList("ProjectId")%>
                        <%: Html.ValidationMessage("ProjectId")%>                   
                        <fieldset style="color:Blue;">                 

                        <% foreach (var item in Model) { %>  
                      <div>
                      <%:Html.CheckBox(item.EmployeName) %>
                      <%:Html.LabelForModel(item.EmployeName) %>
                      </div>                 
                    <%} %>
                          <p>
                          <input type="submit" value="Assign" />
                         </p>      

            </fieldset>
        <%} %>

        </div>
    </body>
    </html>

今、データベースへの挿入で、postmedthod で選択した値の EmployeeName パラメータを取得したいと考えています。これをどのように行うべきか、誰かが私を助けることができますか?

4

0 に答える 0