データベースからフィールド データを取得して、ドロップダウン リストに表示しようとしています。適切な出力が得られません。ドロップダウンでモデル クラス名を取得します。
モデル名: SearchMDLNoModel
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
namespace ApricaCRMEvent.Models.CRM.DatabaseEntities
{
public class SearchMDLNoModel
{
[Display(Name = "Request For Id")]
public string Request_For_Id { get; set; }
}
}
DataLayer クラス名 :SearchMDLNoDL
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using ApricaCRMEvent.Models.CRM.DatabaseEntities;
using DataLayer;
using System.Data;
namespace ApricaCRMEvent.Models.CRM.DataLayer
{
public class SearchMDLNoDL
{
public static List<SearchMDLNoModel> getAllMDLno() //all details of SQue
{
string proc = "SPGetMDLno";
DataTable table = DataProvider.SelectStoreProcedure(proc);
List<SearchMDLNoModel> ListMDLno = new List<SearchMDLNoModel>();
foreach (DataRow row in table.Rows)
{
SearchMDLNoModel MDLno_Obj = new SearchMDLNoModel();
MDLno_Obj.Request_For_Id = Convert.ToString(row["Request_For_Id"]);
ListMDLno.Add(MDLno_Obj);
}
return ListMDLno;
}
}
}
コントローラ名: SearchMDLNoController
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using ApricaCRMEvent.Models.CRM.DataLayer;
using ApricaCRMEvent.Models.CRM.DatabaseEntities;
namespace ApricaCRMEvent.Controllers
{
public class SearchMDLNoController : Controller
{
//
// GET: /SearchMDLNo/
public ActionResult Index()
{
ViewData["MDLno"] = new SelectList(SearchMDLNoDL.getAllMDLno(),"Request_For_Id");
return View();
}
}
}
ビュー名: Index.aspx
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<ApricaCRMEvent.Models.CRM.DatabaseEntities.SearchMDLNoModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
Index
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>Search by MDLNo</h2>
<% using (Html.BeginForm()) { %>
<%: Html.ValidationSummary(true, "Profile Updation was unsuccessful. Please correct the errors and try again.") %>
Select MDLno
<%= Html.DropDownList("Request_For_Id", ViewData["MDLno"] as SelectList)%>
<input type="submit" value="search" name="SearchMDLNo" />
<% } %>
</asp:Content>
このような出力が得られます..その特定のフィールドのデータが必要です。