Step 1:
I\'m using a dropdown to display company locations. The list comes from the Location table.
Step 2:
While the user is registering, the drop
It depends how you are getting values of your form if you are passing formcollection then simply you can access its value by this
public ActionResult MyAction (FormCollection form)
{
string value = form["DropDownListName"];
}
Or you can access it through
string value = Request.Form["DropDownListName"];