gpt4 book ai didi

asp.net-mvc - 使用 EditorForModel() 时,如何装饰我的 ASP.NET MVC ViewModel 属性以呈现为文本区域

转载 作者:行者123 更新时间:2023-12-03 13:43:29 25 4
gpt4 key购买 nike

使用 EditorForModel() 时,如何装饰我的 ASP.NET MVC ViewModel 属性以呈现为文本区域

最佳答案

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

模型:

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

Controller :
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>

关于asp.net-mvc - 使用 EditorForModel() 时,如何装饰我的 ASP.NET MVC ViewModel 属性以呈现为文本区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3081926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com