如何将以下表单/语法转换为Razor中的Html.BeginForm语法
<form action="~/Handler1.ashx" method="POST" enctype="multipart/form-data">
答案 0 :(得分:0)
认为你可以使用它:
@Html.BeginForm(null, null, FormMethod.Post, new { @action="your_url_here", @enctype = "multipart/form-data" })
,或编写自己的HTML扩展(例如:BeginHandlerForm)