创建--前台表单数据提交到Controller

@model MVC_plug.Models.Students@{
    ViewBag.Title = "Create";
}

Create

@using (Html.BeginForm()) {     @Html.ValidationSummary(true)    
        Students                        @Html.LabelFor(model => model.Stu_Name)        
                     @Html.EditorFor(model => model.Stu_Name)             @Html.ValidationMessageFor(model => model.Stu_Name)