<form id="MonthlyAward" action="@Url.Action("SubmitAwards", "MonthlyAward")" method="post"> @Html.DropDownListFor(m => m.ddlProjectsID, Model.ProjectNames, "--Select--", new { id = "ddlProjects",name="ddl_ProjectnameText", onchange = "document.getElementById('TheForm').submit();" }) how to get selected item text in form collection
[HttpPost]
public ActionResult SubmitAwards(FormCollection collection, MonthlyAwardModel award)
{
string strProjectId = collection["ddlProjectsID"].ToString().Trim();
return View();