ie-工具-internet选项-高级-重新使用启动快捷方式的窗口打勾

解决方案 »

  1.   

    谢谢net_lover(我爱whnnet) :可是无论是打勾还是取消,都不行呀
    to  HHH3000(蓝色爱琴海 阿信fans 001号):一个用户登陆系统,登陆后,点击一个按钮将open一个窗口,窗口的内容却是一个登陆页面(正常的话应该是某个操作页面)
      

  2.   

    对了,是点击模式对话框的一个按钮,open一个窗口的
      

  3.   

    问题应该是登陆系统后,在模式对话框中打开一个连接,或则open一个窗口都将出现登陆页面
      

  4.   

    你要将你的参数传到OPEN开的窗口。
      

  5.   

    open的时候,应该是open的窗体和原窗体有一样的sessionid,但是具体可能会丢失!
      

  6.   

    不要将Session放置在IIS进程中。可以将Session放置在数据库或StateServer中。
    在service.msc中启动这个服务。
    <sessionState
      mode="StateServer"
      stateConnectionString="tcpip=127.0.0.1:42424"
      sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
      cookieless="true"
      timeout="20" 
        stateNetworkTimeout ="1000"
    />
      

  7.   

    不要在modalDialog里开新窗口。
      

  8.   

    Abandon
    The Abandon method destroys all the objects stored in a Session object and releases their resources. If you do not call the Abandon method explicitly, the server destroys these objects when the session times out.Syntax
    Session.Abandon
     
    Res
    When the Abandon method is called, the current Session object is queued for deletion, but is not actually deleted until all of the script commands on the current page have been processed. This means that you can access variables stored in the Session object on the same page as the call to Abandon, but not in any subsequent Web pages.For example, in the following script, the third line prints the value Mary. This is because the Session object is not destroyed until the server has finished processing the script. <%
    Session.Abandon 
    Session("MyName") = "Mary"
    Reponse.Write(Session("MyName"))
    %>用Session.Abandon();方法在服务器上销毁会话
      

  9.   

    在资源管理器的地址栏输入url然后转到IE可能会出这种情况
      

  10.   

    看网上说这是一个ie bug 我现在也遇到了这个问题,同样关注