我想在 Razor Engine MVC4 中不使用 TextboxFor 将值设置为 TextAreafor
@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;
}
请帮助我。
问候