I have an mvc razor form. What i want is to submit the user\'s selection from Items dropdown list and navigate to Details view in order to access the chosen item\'s information.
use Items in Details method if you want to get Items value
Items
public ActionResult Details(int Items) { var item = db.Items.Find(Items); return View(item); }