跨区通话
我有一个包含多个区域的 asp.net mvc 2 应用程序。每个区域都包含其自己的嵌套母版页。
有时我们需要一个区域来使用另一区域的部分功能。
例如:“帐户区域”包含管理所有用户联系人的功能。 “工作区”想借用通讯录功能,但仅限于工作通讯录。
我们不能简单地从一个区域重定向到另一个区域,因为这会改变用户的视觉上下文。我们希望第二个区域的特征看起来就像属于第一个区域一样。
有没有什么干净的方法来实现这一目标?
I have an asp.net mvc 2 application with multiple areas . Each area contains its own nested master page.
Some times we need one area to use the partial functionality from the other area.
Ex: "Account area" contains a feature for managing all user's contacts. "Job area" wants to borrow contacts feature, but just for work contacts.
We cannot simply redirect from one area to other, as this will change the visual context for the user. We want the features of the second area to appear as if they belong to the first area.
Is there any clean way of achieving this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的部分功能使用部分页面实现吗?然后您可以考虑将这些部分页面添加到共享文件夹中。
your Partial functionality implemenetd using partial pages? then You can cosnider to add these partial pages in shared folder.