gpt4 book ai didi

asp.net-mvc-2 - ASP.NET MVC - 如何在强类型 TextArea 中设置默认值?

转载 作者:行者123 更新时间:2023-12-02 07:13:15 24 4
gpt4 key购买 nike

我正在尝试使 TextArea 具有默认值。

<%: Html.TextAreaFor(Function(model) model.Description, 5, 10, New With {.Value = "Description: "})%>

这在 TextBoxFor 中正常工作,但在 TextAreaFor 中不起作用

我是否漏掉了一些非常明显的东西?

最佳答案

您可以在创建模型时在 Controller 操作中指定 Description 属性的值,并将该模型传递给 View :

public ViewResult Create()
{
var model = new MyPageModel()
{
Description = "Description: ";
}

return View(model);
}

在 View 中:

<%: Html.TextAreaFor(model.Description) %>

设置该值将不起作用,因为 TextArea 的内容是在开始和结束标记之间指定的,而不是作为属性指定的。

关于asp.net-mvc-2 - ASP.NET MVC - 如何在强类型 TextArea 中设置默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3655033/

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