asp.net – 获得“System.Web.Mvc.Html.MvcForm”一页

前端之家收集整理的这篇文章主要介绍了asp.net – 获得“System.Web.Mvc.Html.MvcForm”一页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
浏览器在我的表单旁边显示“System.Web.Mvc. Html.MvcForm”.如何隐藏?
这是表单代码.
@Html.BeginForm("NewComment","Difficultes",FormMethod.Post)
    {        
    @Html.HiddenFor(m => m.diff.id_diff) 
        <table>
            <tr><label><b>Nouveau commentaire</b></label></tr>
            <tr>
            <td><b>Nom :</b></td><td>@Html.TextBoxFor(m=>m.pseudo)</td>
            </tr>
            <tr>
            <td><b>Commentaire :</b></td><td>@Html.TextAreaFor(m=>m.nouveau)</td>
            </tr>
        </table>

        <input type="submit" value="Ajouter" />
    }

解决方法

代码更改为(添加@using):
@using (Html.BeginForm("NewComment",FormMethod.Post))
{        
    @Html.HiddenFor(m => m.diff.id_diff) 
    <table>
        <tr><label><b>Nouveau commentaire</b></label></tr>
        <tr>
        <td><b>Nom :</b></td><td>@Html.TextBoxFor(m=>m.pseudo)</td>
        </tr>
        <tr>
        <td><b>Commentaire :</b></td><td>@Html.TextAreaFor(m=>m.nouveau)</td>
        </tr>
    </table>

    <input type="submit" value="Ajouter" />
}
原文链接:https://www.f2er.com/aspnet/245908.html

猜你在找的asp.Net相关文章