Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我开发了asp web项目,我的一个页面有如下表单标签: 表单标签
当我单击按钮提交数据时,出现此错误: 错误 405
我阅读了很多文章并且都谈到了 IIS 处理程序映射,但我只是将 VS2013 用于开发,而不是将 IIS 安装为我可以配置的服务器,所以如果有人能在这个问题上提供帮助,我将不胜感激。提前致谢。
尝试使用:
@using (Html.BeginForm("YOUR_ACTION_IN_CONTROLLER", "YOUR_CONTROLLER_NAME", FormMethod.Post)) { enter code here }
此代码将发送模型类到您的控制器中的 post 方法。