VS2008 内的 ASP.NET 虚拟目录
我正在构建一个 ASP.NET 3.5 Web 应用程序。 当我运行该项目(使用 Visual Studio 的内置服务器)时,它需要能够将网络共享作为虚拟目录进行访问。 我似乎找不到任何有关如何执行此操作的信息。
网络资源非常大,更新频繁,并且被其他开发人员和其他项目项目使用——不仅仅是我和我的。
据我所知,一旦部署站点,我就可以在网络路径中创建一个 IIS 虚拟目录,但这在我调试时没有帮助。
I'm building an ASP.NET 3.5 web application. When I run the project (using Visual Studio's built-in server), it needs to be able to access a network share as a virtual directory. I can't seem to find any information about how to do this.
The network resource is very large, is updated frequently, and is used by other developers and in other projects projects--not just me and mine.
I understand that I can create an IIS virtual directory to the network path once the site is deployed, but that doesn't help me while I'm debugging.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法使用 Web 开发服务器执行此操作。 它用于调试单个应用程序,而不是依赖于多个虚拟目录的应用程序。
它如何引用映射到共享的虚拟目录? 通过重定向到该虚拟目录下的资源? 如果是这样,那么在调试过程中,是否可以将其重定向到的位置更改为 IIS 虚拟目录?
You can't do this with the web development server. It's for debugging a single application, not one that depends on multiple virtual directories.
How does it reference the virtual directory mapped to the share? By redirecting to resources under that virtual directory? If so, then during debugging, could you just change the location it redirects to to be an IIS virtual directory?
现在可以使用较新版本的 Visual Studio 和 IIS Express 同时拥有虚拟目录和子应用程序。
在您选择的文本编辑器中打开
.vs\All\config\applicationhost.config
,然后导航到configuration/system.applicationHost/sites
节点。 p>更新与您的父应用程序对应的
site
元素,如下所示:: :
修改:
It's now possible to have both virtual directories and sub-applications with newer versions of Visual Studio and IIS Express.
Open
.vs\All\config\applicationhost.config
in your text editor of choice, then navigate to theconfiguration/system.applicationHost/sites
node.Update the
site
element that corresponds to your parent application, like so:Original:
Modified: