使用 ASP.NET MVC 处理“Form.PHP”
我被要求为表单提交编写一个简单的 POST 处理程序。我正在使用 ASP.NET MVC 3。我使用 [HttpPost] 属性创建了一个具有 ImportContact 方法的 ImportController。
诀窍是,我不能使用 /Import/ImportContact 作为操作。我被迫使用 form.php 代替。
有没有办法自动将 form.php 的请求重定向到我的控制器?
I was asked to write a simple POST handler for a form submission. I am using ASP.NET MVC 3. I created an ImportController with an ImportContact method, using the [HttpPost] attribute.
The trick is, I can't use /Import/ImportContact as the action. I am being forced to use form.php instead.
Is there a way to automatically redirect request to form.php to my controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向路由表添加一个条目,将“form.php”映射到控制器/操作。
You need to add an entry to your routing table that maps "form.php" to a controller/action.