运行在不同应用程序池中的Web应用程序——如何访问网站资源

发布于 2024-12-14 12:23:23 字数 426 浏览 4 评论 0原文

对于我正在为其设计应用程序的 NPO 之一,还有一个不是由我设计的网站。该网站由静态 HTML 页面组成,我的应用程序(献血者管理系统)是在 ASP.Net MVC 中设计的。献血者管理系统将在单独的应用程序池中运行。以下是该网站的组织方式。

Iis服务器
----NPO网站(root)
---------献血者管理系统(root/MyAppPath)
----其他网站(不属于我的NPO)。

献血者管理系统的大部分内容是后台应用程序。唯一向公众公开的部分是献血者的注册和查看他们的个人资料。我不确定以下

  1. 如何使用网站上的资源(布局)装饰这些注册和个人资料页面,因为我的应用程序将在单独的应用程序池中运行。
  2. 我应该在同一个应用程序池中运行网站和我的应用程序吗?我的应用程序中只有两个页面需要网站上的资源(与布局相关)。

For one of the NPO's that I am designing my application for, there is also a website which is not designed by me. The website consists of static HTML pages, where as my application (Blood Donor Management System) is designed in ASP.Net MVC. The Blood Donor Management System will be running in a separate application pool. Here is how the Site will be organized.

IisServer
----NPO WebSite(root)
---------Blood Donor Management System (root/MyAppPath)
----Other Websites (not belonging to my NPO).

The Blood Donor Management System is a back office application for most of its part. The only part that will be exposed to public is the Registration of Blood Donors and viewing their profiles. I am not sure about the following

  1. How do I decorate these registration and profile pages using the resources (layout) from the Website, since my application will run in separate application pool.
  2. Should I run the website and my application in same application pool. There are only two pages in my application that would need resources(layout related) from the website.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

止于盛夏 2024-12-21 12:23:23

我建议您将 MVC 应用程序合并为一个,并使用 Areas 将它们分开,并且仍然能够利用共享资源。

演练:使用区域组织 ASP.NET MVC 应用程序

I suggest you combine your MVC application into one, and use Areas to separate them and still able to utilize shared resources.

Walkthrough: Organizing an ASP.NET MVC Application using Areas

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文