I'm new to MVC and want to get the value and text from a dropdown from the view to the controller.
I can get the value like this
[HttpPost]
public ActionResult Create(Appointment appointment)
{
var site = Request["siteSelect"];
}
But how do I get the Text?