azure 上的可插入动态页面

发布于 2024-10-08 05:30:21 字数 104 浏览 2 评论 0原文

我有一个场景,我们有一个基于模板的网站,模板是aspx网页,我们的设计师定期创建这些模板,我们如何将这些模板存储在azure上,这样我们只需上传模板,而不必上传整个应用程序包甚至只添加一个模板?

I have a scenario, we have a template based website and templates are aspx web pages, our designers regularly create these templates, how can we store these templates on azure such that we just have to upload templates and not have to upload whole application package for adding just even a single template ?

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

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

发布评论

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

评论(3

旧瑾黎汐 2024-10-15 05:30:21

我会将它们存储在 blob 存储中。

I would store them in blob storage.

不再见 2024-10-15 05:30:21

微软研究团队使用了一种称为通用工作者的技术。简而言之,这种方法要求将核心应用程序存储在其他地方(例如 blob 存储),然后在运行时将其拉下来执行。理论上,同样的方法可用于创建一个包,您的 Web 应用程序可以在应用更新时下拉并加载该包。从而避免您每次更新时都必须重新部署。

我在这里看到的挑战与导致跨网站创建可重用 aspx 文件的问题相同。至少我上次尝试过(几年前/版本前),这是不可行的。所以这轮你可能会面临同样的挑战。

There's a technique that was used by the Microsoft research team called a generic worker. In a nutshell, this approach required that the core application was stored elsewhere (like blob storage), then would be pulled down at run time for execution. In theory, this same approach could be used for creating a package that your web app could pull down and load as updates are applied. Thus preventing you from having to redeploy each time an update occurs.

The challenge I see here is the same one that causes issues creating reusable aspx files across web sites. At least last I tried that (several years/versions ago), it wasn't doable. So you may have that same challenge this go-round.

病女 2024-10-15 05:30:21

我发现还有一个角色叫做Hosted Web Core Web Role,它提供了在VHD上创建虚拟目录的能力。
我们将模板放在 VHD 上的文件夹中,并为其创建虚拟目录。

根据 Hosted Web Core Web Role 的作者最近发表的文章,SDK 1.3 提供对 IIS7 的全面支持,并且可以仅使用 Web Role 创建虚拟目录...只是想知道如何...

I found that there is another role called Hosted Web Core Web Role, which provide the ability to create virtual directories on VHD.
We will put templates on a folder on VHDs and create virtual directory to them.

According to recent post by the author of Hosted Web Core Web Role, SDK 1.3 provide full support for IIS7, and virtual directory can be created using just Web Role... just wondering how...

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