本文介绍了如何从.cs文件获取虚拟目录别名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



谁能告诉我如何从C#代码获取IIS中托管的网站的虚拟目录别名?

在此先谢谢您.

Hi,

Can anyone tell me how can I get the virtual directory alias name of the website that is hosted in IIS from C# code?

Thanks in advance.

推荐答案


Request.ServerVariables["PATH_INFO"];



这会给您:/别名/...

提取别名.

希望对您有所帮助!



this will give you: /alias/...

Extract the alias.

Hope this helps!



这篇关于如何从.cs文件获取虚拟目录别名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 22:26