Description:
View:
In
this example we explain that how to set default selected value in asp.net MVC
using Razor view.or how to set default value for DropDownList using the
@Html.DropDownListFor Helper method in asp.net MVC Razor.
@model Form_Post_MVC.Models.PersonModel
@{
   
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width"/>
    <title>Index</title>
</head>
<body>
    @using (Html.BeginForm("Index", "Home", FormMethod.Post))
    {
        <table cellpadding="0" cellspacing="0">
            <tr>
                <th colspan="2" align="center">Person Details</th>
            </tr>
            <tr>
                <td>PersonId: </td>
                <td>
                    @Html.TextBoxFor(m =>
m.PersonId)
                </td>
            </tr>
            <tr>
                <td>Name: </td>
                <td>
                    @Html.TextBoxFor(m =>
m.Name)
                </td>
            </tr>
            <tr>
                <td>Gender: </td>
                <td>
                    @Html.DropDownListFor(m
=> m.Gender, new List<SelectListItem>
                  
{ new SelectListItem{Text="Male", Value="M"},
                     new SelectListItem{Text="Female",
Value="F"}}, "Please select")
                </td>
            </tr>
            <tr>
                <td>City: </td>
                <td>
                    @Html.TextBoxFor(m =>
m.City)
                </td>
            </tr>
            <tr>
                <td></td>
                <td><input type="submit" value="Submit"/></td>
            </tr>
        </table>
    }
</body>
</html>
 

 
  
  
 
 
 
 
0 comments:
Post a Comment