Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6946209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T13:32:07+00:00 2026-05-27T13:32:07+00:00

I have a DataTable which looks like below: TOTAL_CODE COD_NAME AP0001 School AP0002 Hospital

  • 0

I have a DataTable which looks like below:

TOTAL_CODE COD_NAME
AP0001 School
AP0002 Hospital
AP0003 Airport
AP0004 House

I am very new to ASP.NET MVC3 and I cannot figure it out how to bind a DataTable to my DropDownListFor control.

PS: I have model as below:

@model Kery.Models.Profile
@{
    ViewBag.Title = "DetailAdd";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<P>Please select your sex type: @Html.DropDownListFor(..............)</p>

Model:

public class Profile
{
    public IEnumerable<SelectListItem> SexList { get; set; }
}

Controller:

[HttpGet]
public ActionResult DetailAdd()
{
    System.Data.DataTable _dtJikchaekList = _bp.DtReturnS(false
     , "CHP_AJAX_CODEHELPER"
     , "JJ"
     , ""
     , "0"
     );
    return View();
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T13:32:08+00:00Added an answer on May 27, 2026 at 1:32 pm

    this is one way to do it.

    Edit:
    
     //you can take this as a Sex Model
                public class Sex {
                    public string gender { get; set; }
                    public string shortname { get; set; }
                }
                public List<SelectListItem> SexList() {
                    //if you have your sex model in the database , you can get it here
    
                    //I have a static content below, just to show you how you can manuplate the sex model,
                    List<Sex> s = new List<Sex>() { new Sex() { gender = "Male", shortname = "M" }, new Sex() { gender = "Female", shortname = "F" } };
    
                    List<SelectListItem> items = new List<SelectListItem>();
                    //go through the sex model and populate you selectlist items
                    foreach (Sex sex in s) {
                        SelectListItem item = new SelectListItem();
                        item.Text =sex.gender;
                        item.Value =sex.shortname;
                        items.Add(item);
                    }
                    return items;
                }
    

    On your controller

    [HttpGet]
    public ActionResult DetailAdd()
    {
        Profile profile = new Profile();
        //set the sex types
        profile.SexList=SexList();
    
        return View(profile);
    }
    

    on your view

    @model Kery.Models.Profile
    @{
        ViewBag.Title = "DetailAdd";
        Layout = "~/Views/Shared/_Layout.cshtml";
    }
    
    <P>Please select your sex type: @Html.DropDownListFor("name",Model.SexList)</p>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a dataTable which has a value of a bean class which looks
My ice:dataTable looks like below:- <ice:dataTable id=someTbl var=someVar value=#{someBean.someList} > <ice:column> <f:facet name=header> <ice:outputText
I have a DataTable which is bound to a GridView. I also have a
I have a DataTable which I want to save to a SQLite Database Table.
I have a DataTable which I select from database (Well, these data cross several
I have a DataTable which is bound to datagridview (Winforms)... I use the following
In C#/ASP.NET 3.5, I have a DataTable which pulls rows from the database. I
I have a System.Data.DataTable which is populated by reading a CSV file which sets
I have a DataSet which I get a DataTable from that I am being
I have a datagridview which im binding DataTable to. What I want do is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.