使用虚拟路径提供程序从云服务加载视图?
是否可以使用虚拟路径提供程序从云服务加载视图?例如,如果我有一个位于 http://www.example.com/ui 下的网站管理 ui,我想从云端加载视图。
Is it possible to use a virtual path provider to load views from a cloud service? For example if I have a site admin ui located under http://www.example.com/ui, I want to load the views from the cloud.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过编写 自定义虚拟路径来实现提供商。因此,您在重写的
Open
方法中需要做的就是从 can 服务中获取视图的内容并将其作为流返回。要通过 HTTP 获取资源,您可以使用 WebClient 类。That's possible by writing a custom virtual path provider. So all you need to do in the overriden
Open
method is to fetch the contents of the view from the could service and return it as stream. For fetching resources over HTTP you could use the WebClient class.