I have a drop down where I want to pass the selected value I selected to the controller. How do I accomplish this?
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.
|
|
|
Controller:
Model:
View:
Put the view in the folder like:
and your url will be:
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 |
|||
|
|
|
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
Or in C#
HTH, Mike |
|||
|
|