网站中有三个不同的登录入口,分别进入不同的页面。但在web.config中只能写一个
 <authentication mode="Forms"> 
<forms name="MerlinchintaAppWeb" loginUrl="admin/adminlogin.aspx" protection="All" timeout="60" path="/">
</forms>
</authentication>如果另两个验证无法通过,却只能跳转到="admin/adminlogin.aspx" 这个登录页面,无法跳转到
另两个对应的登录页面,请问怎么解决!谢谢!还有我使用了验证票,当从admin/adminlogin.aspx登入后HttpContext.Current.User不为null,
也就是说是正常的,但从另两个登录入口进入后HttpContext.Current.User就是一个空值???