Sharing a master between MVC and WebForms - dealing with the lt;formgt;(在 MVC 和 WebForms 之间共享一个 master - 处理 lt;formgt;)
问题描述
We have a large legacy application where we want to start using MVC for new functionality.
To do this we added custom routing, for instance:
routes.IgnoreRoute( "{*allaspx}", new { allaspx = @".*.as[pmh]x(/.*)?" } );
And we want to share the master page between the old WebForms and the new MVC pages.
This seems simple enough - changed the master to inherit from ViewMasterPage
and it can be used as the master for MVC pages too.
The problem is the HTML <form>
.
The master page has a <form>
tag at the top and 3 content panels inside it, which is how WebForms like it. The Page
control overrides the master's form to point back at the page, and this appears to be a hardcoded behaviour.
All three content panels have WebForms controls, so the page level <form>
tag needs to be outside them to cover all three. Something like this:
<form id="form1" runat="server">
...
<asp:contentplaceholder id="content1" runat="server" />
...
<asp:contentplaceholder id="content2" runat="server" />
... //etc
</form>
However, for MVC we want to have forms inside the views using the Html.BeginForm
helper. HTML doesn't let you nest forms. MVC pattern needs the views to post back to different actions (for instance a "details" view might post back to an "edit" action).
Does anyone know a good way around this?
We share a master page between web forms and MVC which doesn't have the <form>
. You can create an intermediate master page for web forms which in turn uses your root master page, but adds the <form>
. The hierarchical structure of master pages is very useful for these constructs.
这篇关于在 MVC 和 WebForms 之间共享一个 master - 处理 <form>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 MVC 和 WebForms 之间共享一个 master - 处理 &


基础教程推荐
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01