I'm trying to get the input from all the HTML objects I used in the view to run some other functions with those inputs.
I need to get the input from
- A textbox
- 3 selects (comboboxes)
This is what I do on button click:
Controll (Controller is called "SetupController"):
public ActionResult Install()
{
return View("Index"); //This is my home-page
}
HTML:
@Html.ActionLink("Start Setup!", "Install", "Setup")
So how do I get information out of those inputs?
The selects are called "folder", "database" and "sbnProject".
Thanks in advance, Thomas