vote up 1 vote down star
1

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

flag

3 Answers

vote up 2 vote down check
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.

link|flag
vote up -1 vote down

i need sample coding of dropdow list

link|flag
that's a request (post it as a question), not an answer – Sosh Oct 4 at 13:17
vote up 1 vote down
public class MyController
{
    public ActionResult MyAction (FormCollection form)
    {
        string value = form["DropDownListName"];
    }
}
link|flag

Your Answer

Get an OpenID
or

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