Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
Node is saved as draft in My Content >> Draft
  • Using Predefined template in MVC

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 45
    Comment on it

    In MVC for performing various operations we can use the predefined templates for the execution of the program easy.

     

    For the basic operation like binding the gridview we can use the list template for it.

     

     

     

     

    I have selected a list template for binding my model with the list in the form of the gridview .

     

    This is my model class which i have used to bind with the view which is shown like gridview.

     

     public enum getstatus
        {
            success, failure
        }
        public class EmployeeModel
        {
    
            public int EmpId { get; set; }
            [Required(ErrorMessage = "First Name is required")]
            public string FirstName { get; set; }
            public string MiddleName { get; set; }
            [Required(ErrorMessage = "Last Name is required")]
            public string LastName { get; set; }
            [Required(ErrorMessage = "PhoneNo is required")]
            public string PhoneNo { get; set; }
            public string Address { get; set; }
            public getstatus Status { get; set; }
            public string msg { get; set; }
        }

     

     

    You will get the view automatically with all the model properties binded with the table


     

    @model IEnumerable<MVC_Demo.Models.EmployeeModel>
    
    @{
        ViewBag.Title = "Index";
    }
    @{ var i = 1;}
    @using (Html.BeginForm("Edit", "RegisterGrid", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-horizontal", role = "form" }))
    {
        @Html.AntiForgeryToken()
    
        <h2>Index</h2>
    
    
    
        <p>
            @Html.ActionLink("Create New", "Create")
        </p>
        <table class="table">
            <tr>
                <th>
                    @Html.DisplayNameFor(model => model.EmpId)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.FirstName)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.MiddleName)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.LastName)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.PhoneNo)
                </th>
                <th>
                    @Html.DisplayNameFor(model => model.Address)
                </th>
                <th>
                    Action
                </th>
                <th></th>
            </tr>
    
            @foreach (var item in Model)
            {
                <tr>
                    <td>
    
                        @Html.Label("", Convert.ToString(item.EmpId), new { id = "lblEmpId" + i })
                       
                    </td>
                    <td>
                        @Html.Label("", item.FirstName, new { id = "lblFirstName" + i })
                
                    </td>
                    <td>
                        @Html.Label("", item.MiddleName, new { id = "lblMiddleName" + i })
    
                    </td>
                    <td>
                        @Html.Label("", item.LastName, new { id = "lblLastName" + i })
    
                    </td>
                    <td>
                        @Html.Label("", item.PhoneNo, new { id = "lblPhoneNo" + i })
    
                    </td>
                    <td>
                        @Html.Label("", item.Address, new { id = "lblAddress" + i })
    
                    </td>
    
                    <td>
                        @Html.ActionLink("Edit", "Edit", new { id =item.EmpId, @class = "editLink" }) |
                        @Html.ActionLink("Details", "Details", new { /* id=item.PrimaryKey */ }) |
                        @Html.ActionLink("Delete", "Delete", new { /* id=item.PrimaryKey */ })
                    </td>
                </tr>
                i = i + 1;
            }
    
        </table>
    
    }
    
    

     

     

    The output will be interactive like as any other gridview.

     

    .net

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: