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 358875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:20:27+00:00 2026-05-12T12:20:27+00:00

Can someone help me with getting values from a dropdownlist in asp.net mvc? I

  • 0

Can someone help me with getting values from a dropdownlist in asp.net mvc?

I can get values from textboxes,etc…but,how do I get these 2 things…

  1. Getting Selected Item Value of the drop down list from the controller class
  2. Getting all the list of items of the drop down list from the controller class

Thanks

  • 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-12T12:20:27+00:00Added an answer on May 12, 2026 at 12:20 pm

    You can get the selected value from a drop down list the same way as you do for text boxes.

    Using default model binding

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult GetValueExample(string MyList) {
      //MyList will contain the selected value
      //...
    }
    

    or from a FormCollection

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult GetValueExample(FormCollection form) {
      string val = form["MyList"];
      //...
    }
    

    or from the request

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult GetValueExample(string MyList) {
      string val = Request.Form["MyList"];  //or
      val = Request["MyList"];
      //...
    }
    

    Where your drop down list is named “MyList”.

    <%= Html.DropDownList("MyList", MyItems) %>
    

    or straight HTML

    <select name="MyList">
      <option value="1">Item 1</option>
      <option value="2">Item 2</option>
    </select>
    

    The browser will only submit the selected value from the drop down list and not all the other values. To get the list of all the other items you should invoke the code that populated the list in the first place (assuming you used Html.DropDownList()).

    Update

    [AcceptVerbs(Http.Get)]
    public ActionResult GetValueExample() {
      ViewData["MyItems"] = GetSelectList();
      return View();
    }
    
    [AcceptVerbs(Http.Get)]
    public ActionResult GetValueExample(string MyList) {
      //MyList contains the selected value
      SelectList list = GetSelectList(); //list will contain the original list of items
      //...
    }
    
    private SelectList GetSelectList() {
      Dictionary<string, string> list = new Dictionary<string, string>();
      list.Add("Item 1", "1");
      list.Add("Item 2", "2");
      list.Add("Item 3", "3");
      return new SelectList(list, "value", "key");
    }
    
    //...
    
    <%= Html.DropDownList("MyList", ViewData["MyItems"] as SelectList) %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone offer some help on this? I'm getting an 'invalid key value type'
Can someone help me turn the enhanced for loop for(int cell:locationCells) to a regular
Can someone help me figure out an easy way to limit the UITextField range,
Can someone help me identify what the purpose of this unidentified syntax is. It
Can someone help me with this: This is a program to find all the
Can someone help me to find a solution on how to calculate a cubic
Can someone help me create an index/count button for a UITableView, like this one?
can someone help me with unix command to truncate the contents of the files
can someone help with this? I need the following function to do this... $x
Can someone help me on this. I'm made an image uploader and i want

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.