我在IIS上建了两个虚拟目录,分别对应两个应用系统,两个系统都是用了FormsAuthentication.RedirectFromLoginPage(Tb_userid.Text, true);这种方式进行登陆验证的,但我发现如果我同时登陆了这两个系统,然后通过FormsAuthentication.SignOut();方式退出其中一个系统,另一个系统的验证就会自动失效,需要重新登陆,如何解决这个问题?
web.config 里的内容 :
<authentication mode="Forms">
      <forms name="CheckPwd" loginUrl="login.aspx" />
</authentication>