谁能告诉我如何在MVC5中使用网格?

问题描述:

我想通过Grid在我的数据库中保存详细记录,我可以在我的MVC项目中使用网格吗?



我尝试了什么:



I want to save detail records in my database through Grid, can i use grid in my MVC project?

What I have tried:

@using (Html.BeginForm())
{
    @Html.AntiForgeryToken()

    <div class="form-horizontal">
        <h4>Gl_t_vcr</h4>
        <hr />
        @Html.ValidationSummary(true, "", new { @class = "text-danger" })
        @Html.HiddenFor(model => model.mvch_no)









我想在这个视图中使用网格,我该怎么做?





I want grid in this view, how can i do this?