This is my Razor view in ASP.NET MVC3 Application
@Html.DropDownListFor(m => m.Leave_Type, Model.Leave_Types, new { @class = "input-append" })
On POST when I read Model.LeaveType, it returns selected value. I want to get the selected text instead, how do I get it? I appreciate any help. Thanks a lot in advance!!