我的 web.config 中有这样的内容:
<authentication mode="Forms">
<forms loginUrl="MyVirtualDirectory/Login/Login" protection="All" timeout="15" />
</authentication>
但是,我正在尝试实现一些“假”虚拟目录,但似乎无法弄清楚如何在运行时使 loginUrl 的“MyVirtualDirectory”部分动态化。
阅读此 MSDN 文章,我似乎可以设置此属性,但是将其添加到 Application_Start 或 Application_BeginRequest 似乎不起作用。
有什么帮助吗?谢谢!