asp.net-mvc – 如何使用EditorForModel()来装饰我的ASP.NET MVC ViewModel属性作为textarea渲染

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何使用EditorForModel()来装饰我的ASP.NET MVC ViewModel属性作为textarea渲染前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当使用EditorForModel()时,如何将ASP.NET MVC viewmodel属性装饰为textarea

解决方法

您可以使用 [DataType(DataType.MultilineText)]属性来装饰模型属性

模型:

public class MyModel
{
    [DataType(DataType.MultilineText)]
    public string MyProperty { get; set; }
}

控制器:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View(new MyModel());
    }
}

视图:

<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<SomeNs.Models.MyModel>" %>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <%: Html.EditorForModel() %>
</asp:Content>
原文链接:https://www.f2er.com/aspnet/252476.html

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