gpt4 book ai didi

ASP.NET Razor Html.TextArea

转载 作者:行者123 更新时间:2023-12-02 20:09:29 25 4
gpt4 key购买 nike

1)使用行编辑 View 时:

    @Html.TextArea(name: "Message", rows: 10, columns: 40)

我在编译时收到此错误:

ERR: "The best overload for 'TextArea' does not have a parameter of type 'rows'"

即使存在以行和列作为参数的签名。

2)所以我尝试使用签名: @Html.TextArea(字符串名称,对象htmlAttributes)

调用函数如下

    @Html.TextArea(name: "Message", new { rows=10, columns=40 }

但我收到另一个错误:

ERR: "Named Argument Specifications must appear after all fixed arguments have been specified"

有人知道为什么以及如何解决这些问题吗?

提前谢谢您!

最佳答案

只需将代码更改为:

@Html.TextArea("Message", new { rows=10, columns=40 })

没有命名参数

关于ASP.NET Razor Html.TextArea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15277078/

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