Connecting Tech Pros Worldwide Forums | Help | Site Map

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

=?Utf-8?B?QmVubnk=?=
Guest
 
Posts: n/a
#1: Mar 28 '08
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=?=
Guest
 
Posts: n/a
#2: Mar 28 '08

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:
Quote:
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.
Cowboy \(Gregory A. Beamer\)
Guest
 
Posts: n/a
#3: Mar 28 '08

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
http://gregorybeamer.spaces.live.com/lists/feed.rss

or just read it:
http://gregorybeamer.spaces.live.com/

*************************************************
| Think outside the box!
|
*************************************************
"Benny" <blee@newsgroup.nospamwrote in message
news:2336EB03-7D74-42F3-9A5A-5A8A42357317@microsoft.com...
Quote:
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?YnJ1Y2UgYmFya2Vy?=
Guest
 
Posts: n/a
#4: Mar 29 '08

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:
Quote:
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.
Steven Cheng [MSFT]
Guest
 
Posts: n/a
#5: Mar 31 '08

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@microsoft.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.

--------------------
Quote:
>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
Quote:
>
>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.
>
Closed Thread