Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a drop down where I want to pass the selected value I selected to the controller. How do I accomplish this?

share|improve this question

2 Answers

up vote 2 down vote accepted

Controller:

public class TestController : Controller
{
    public ActionResult Test(Test input)
    {
        string selected = input.YourDropDown; //Here is your value

        return View();
    }

}

Model:

public class Test
{
    public string YourDropDown { get; set; }
}

View:

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<###NAMESPACE###.Models.Test>" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Test</title>
</head>
<body>
    <div>
        <% using (Html.BeginForm()) { %>
            <%= Html.DropDownListFor(model => model.YourDropDown, new[] { new SelectListItem { Text = "Test", Value = "Value" }}) %>
            <input type="submit" />
        <% } %>
    </div>
</body>
</html>

Put the view in the folder like: /Views/Test/Test.aspx

and your url will be:

url/Test/Test

This would properly be one of the better and most extensible ways to do what you what. You could avoid to make the model class and use Html.DropDownList instead of Html.DropDownListFor.

share|improve this answer

You can pass via the querystring like so:

http://YourMvcApp/YourController/YourAction/?yourvariable=yourvalue

Then inside your Action you can get to the value by doing

Dim myValue As Object = Request("yourvariable")

Or in C#

Object myValue = Request["yourvariable"];

HTH,

Mike

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.