【发布时间】:2010-08-24 09:23:54
【问题描述】:
我想知道在 ASP.NET MVC 中是否有替代方案:
<input type="file" name="filePath" id="file" />
我想要一些代码示例:
<%= Html.TextAreaFor(m => m.FilePath,1,32,null)%>
【问题讨论】:
标签: c# .net html asp.net-mvc
我想知道在 ASP.NET MVC 中是否有替代方案:
<input type="file" name="filePath" id="file" />
我想要一些代码示例:
<%= Html.TextAreaFor(m => m.FilePath,1,32,null)%>
【问题讨论】:
标签: c# .net html asp.net-mvc
编写您自己的 Html 助手,它将为您呈现此 html 代码。您可以使用this tutorial 或this video 了解如何制作它。
【讨论】: