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

  • Home
  • SEARCH
  • 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 887945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:18:44+00:00 2026-05-15T13:18:44+00:00

I’m extending an Enum and, given the following code, selectListItems is a generic List

  • 0

I’m extending an Enum and, given the following code, selectListItems is a generic List of SelectListItems that has all the correct values for my Enum.

The first foreach loop works fine. However, when I create the actual SelectList and pass in selectListItems, all the values are lost. How can I keep those values intact?

foreach (SelectListItem item in selectListItems)
{
    string tex = item.Text;
    string val = item.Value;
    string sel = item.Selected.ToString();
}

SelectList selectList = new SelectList(selectListItems);

foreach (SelectListItem slid in selectList)
{
    string tex = slid.Text;
    string val = slid.Value;
    string sel = slid.Selected.ToString();
}
  • 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-15T13:18:45+00:00Added an answer on May 15, 2026 at 1:18 pm

    You need to change the line where you build it to tell it where to look for the values. In your case it would be:

    SelectList selectList = new SelectList(selectListItems, "Value", "Text");
    

    This will not carry over the selected item though. In that case you will need figure out which item should be the selected one and pass it’s value in via the forth param.

    Here is an example:

    List<SelectListItem> items = new List<SelectListItem>();
    items.Add(new SelectListItem() { Text = "Test1", Value = "1", Selected = false });
    items.Add(new SelectListItem() { Text = "Test8", Value = "8", Selected = true });
    items.Add(new SelectListItem() { Text = "Test3", Value = "3", Selected = false });
    items.Add(new SelectListItem() { Text = "Test5", Value = "5", Selected = false });
    
    SelectList sl = new SelectList(items, "Value", "Text", "8");
    

    You might also want to check out this SO thread that might be helpful.

    Edit: Just saw your comment, and it doesn’t work because it isn’t smart enough to know to look for the Text and Value fields by default. You could pass it an type of objects and it gives you the ability to bind to it by defining which properties to map to the Text and Value properties.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 443k
  • Answers 443k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer See post from Kiron Changed index to copy to second… May 15, 2026 at 6:24 pm
  • Editorial Team
    Editorial Team added an answer There are two ways to approach this problem: Understand the… May 15, 2026 at 6:24 pm
  • Editorial Team
    Editorial Team added an answer Traditionally what you do when you want to move a… May 15, 2026 at 6:23 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.