1)在使用该行编辑视图时:
@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(string name, object htmlAttributes)
调用函数如下
@Html.TextArea(name: "Message", new { rows=10, columns=40 }
但我收到另一个错误:
ERR: "Named Argument Specifications must appear after all fixed arguments have been specified"
任何人都知道为什么以及如何解决它们?
先感谢您!