0

我在 MVC3 中使用下面的 ASPX 编码“Not Razor”,并在视图页面中运行时获取不需要的代码“System.Web.Mvc.Html.MvcForm”。

<%= Html.BeginForm("ChartFeatures","Chart") %> 
  <div>
     <h3>EXPORT CHART</h3><br />
     Enter file name:<input type="text" id="FileName" name="FileName" value=""/>   
     Type:     
     <select name="Type">
     <option value="Bmp">Bmp</option>
     <option value="Gif">Gif</option> 
     </select><br /> 
     <input type="submit"value="Export"id="submit"/>
  </div>

任何人都可以帮助我。

谢谢,巴拉蒂。

4

1 回答 1

1

将您的表单内容包装using并删除=

<% using(Html.BeginForm("ChartFeatures","Chart")) { %> 

your form content here

<% } %>
于 2013-05-29T05:30:40.827 回答