authentication的path设置
web.config中设置authentication的path默认是"/",但我想设置为只访问某个目录时进行验证,但我设置后,不起作用.
代码如下:
<authentication mode="Forms">
<forms name="loginUser" loginUrl="custom/login.aspx" protection="All" path="custom">
<credentials passwordFormat="Clear">
<user name="aaa" password="aaa" />
<user name="bbb" password="bbb" />
</credentials>
</forms>
</authentication>
custom是网站的一个目录.
大家帮忙看一下.