@ Html.Textbox如何在编辑时设置值?

时间:2013-08-21 12:43:37

标签: asp.net-mvc-4 razor textarea

我想在Razor Engine MVC4中将值设置为TextArea而不是TextboxFor

@Html.TextAreaFor(m => m.MetaDescription, new {@class = "form-textarea" })

@Html.TextAreaFor(m => m.MetaDescription, new {@Value = MetaDescription, @class = "form-textarea" })

我的文本是在视图中显示空白值的值,我已从模型中为变量赋值,如下所示。

 if (!string.IsNullOrEmpty(Model.SettingsPoco.MetaDescription))
    {
        MetaDescription = Model.SettingsPoco.MetaDescription;
    }

请帮帮我。

此致

0 个答案:

没有答案