how to launch new IE window so it will create separate ASP Session

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?QmVubnk=?=

    #1

    how to launch new IE window so it will create separate ASP Session

    How do I create a new IE window (client script or ASP.NET server code) so
    that it will create a new ASP session with each new window?

    Thanks.
  • =?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?=

    #2
    RE: how to launch new IE window so it will create separate ASP Session

    I don't think you can, because the cookies will be the same on the same
    client machine. Session is controlled by the session cookie.
    -- Peter
    Site: http://www.eggheadcafe.com
    UnBlog: http://petesbloggerama.blogspot.com
    Short Urls & more: http://ittyurl.net


    "Benny" wrote:
    How do I create a new IE window (client script or ASP.NET server code) so
    that it will create a new ASP session with each new window?
    >
    Thanks.

    Comment

    • Cowboy \(Gregory A. Beamer\)

      #3
      Re: how to launch new IE window so it will create separate ASP Session

      The only way to do it is to spin up IE from the menu, not from internal
      shortcuts. As you are sandboxed, I am not sure you can easily do this.
      Perhaps an ActiveX control or Silverlight app?

      --
      Gregory A. Beamer
      MVP, MCP: +I, SE, SD, DBA

      Subscribe to my blog


      or just read it:


      *************** *************** *************** ****
      | Think outside the box!
      |
      *************** *************** *************** ****
      "Benny" <blee@newsgroup .nospamwrote in message
      news:2336EB03-7D74-42F3-9A5A-5A8A42357317@mi crosoft.com...
      How do I create a new IE window (client script or ASP.NET server code) so
      that it will create a new ASP session with each new window?
      >
      Thanks.

      Comment

      • =?Utf-8?B?YnJ1Y2UgYmFya2Vy?=

        #4
        RE: how to launch new IE window so it will create separate ASP Session

        switch to cookless sessions which use the url instead of a cookie. then when
        opening the window, strip the sessionid from the url.

        -- bruce (sqlwork.com)


        "Benny" wrote:
        How do I create a new IE window (client script or ASP.NET server code) so
        that it will create a new ASP session with each new window?
        >
        Thanks.

        Comment

        • Steven Cheng [MSFT]

          #5
          RE: how to launch new IE window so it will create separate ASP Session

          Hi Benny,

          I'm afraid for the question you mentioend here, it is out of the
          server-side web application's control. The IE new window/popup creating
          behavior is totally controled by the client-side browser. So far those
          common ways to create new window will always result a new window in the
          same session. I think the only way to create a new IE window with new
          session is use API to create new process(that may require you to run some
          strong-code such as activex on client side).

          Sincerely,

          Steven Cheng

          Microsoft MSDN Online Support Lead


          Delighting our customers is our #1 priority. We welcome your comments and
          suggestions about how we can improve the support we provide to you. Please
          feel free to let my manager know what you think of the level of service
          provided. You can send feedback directly to my manager at:
          msdnmg@microsof t.com.

          =============== =============== =============== =====
          Get notification to my posts through email? Please refer to
          http://msdn.microsoft.com/subscripti...ult.aspx#notif
          ications.
          =============== =============== =============== =====
          This posting is provided "AS IS" with no warranties, and confers no rights.

          --------------------
          >From: =?Utf-8?B?QmVubnk=?= <blee@newsgroup .nospam>
          >Subject: how to launch new IE window so it will create separate ASP Session
          >Date: Fri, 28 Mar 2008 09:57:00 -0700
          >
          >How do I create a new IE window (client script or ASP.NET server code) so
          >that it will create a new ASP session with each new window?
          >
          >Thanks.
          >

          Comment

          Working...