Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In ASP.NET MVC, how can I get a selected dropdown list value from a posted form?

share|improve this question
1  
Check it here might help you. DropeDown List – Mvcdev Feb 3 '11 at 14:31

2 Answers

up vote 5 down vote accepted
public class MyController
{
    public ActionResult MyAction(string DropDownListName)
    {

    }
}

This will do the line of code in MasterMind's answer for you. Which method you want to use depends on your situation. Either is fine in my opinion.

If all your possible selected values are numbers you can also do this:

public class MyController
{
    public ActionResult MyAction(int DropDownListName)
    {

    }
}

It will then convert the string of the selected value into an integer for you.

share|improve this answer
public class MyController
{
    public ActionResult MyAction (FormCollection form)
    {
        string value = form["DropDownListName"];
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.