虚拟目录未显示在 VS 2005 中
为什么当我创建一个基于 IIS 的网站时,在主应用程序下创建的任何虚拟目录都会显示在 VS2005 中,但如果我创建一个基于文件系统的网站,然后使用 IIS 配置虚拟目录并使用它来运行该应用程序,子虚拟目录在 VS2005 中不显示?
提前致谢。
-SK
How come when I create an IIS based website, any virtual directories created under the main app show up in VS2005 but if I create a file-system based website, then use IIS to configure a virtual directory and use it to run the app, the sub-virtual directories do not show up in VS2005 ?
Thanks in advance.
-SK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为,顾名思义,基于文件系统的网站仅查看文件系统,因此没有有关 IIS 中创建的任何虚拟目录的信息。
如果您想实现类似的目标,那么您可以通过在文件系统中创建链接/连接来“模拟”虚拟目录(在为基于 IIS 的网站创建虚拟目录的位置包含另一个目录)。例如,可以使用 Junction 工具来完成此操作。
Because, as the name says, a file-system based website looks just at the file-system and has therefore no information about any virtual directories created in IIS.
If you want to achieve something similar, then you could "simulate" the virtual directories by creating links/junctions in the file-system (to include another directory at the location where you create the virtual directory for the IIS-based website). This can be done with the tool Junction for example.