473,464 Members | 1,732 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Losing Session in a Popup Window

When we open a window (using client-side jscript ie.
window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
page Popup.aspx does not have access to the Session variables present
in Page1.aspx. The IIS Log shows (listed below) shows that the
ASP.NET_SessionId cookie is not present in Popup.aspx.

The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.

Any ideas on how to debug this or resolve this?

#Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
sc-status cs(User-Agent) cs(Cookie)
2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
action=Edit%20a%20Driver 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx
Level1Text=BROTHERS%20CO 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
Nov 17 '05 #1
9 4687
Kevin,

If the user is using IE6, what are you saying?
Is it a setup issue.
or a random some do some don't
??
Thanks

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uE**************@TK2MSFTNGP10.phx.gbl...
You can't count on the browser that the user is using to share Sessions
across browser instances. Some do, and some don't.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
When we open a window (using client-side jscript ie.
window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
page Popup.aspx does not have access to the Session variables present
in Page1.aspx. The IIS Log shows (listed below) shows that the
ASP.NET_SessionId cookie is not present in Popup.aspx.

The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.

Any ideas on how to debug this or resolve this?

#Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
sc-status cs(User-Agent) cs(Cookie)
2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
action=Edit%20a%20Driver 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx
Level1Text=BROTHERS%20CO 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55


Nov 17 '05 #2
I'm not saying anything regarding the specific browser he mentioned (I don't
know specifically about IE6). I'm saying what I said: You can't count on the
browser that the user is using to share Sessions across browser instances.
Some [browsers] do, and some don't. If he knew that all of his users were
going to use the same browser, this might be a viable method, but since he
doesn't, it's not.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:eU**************@TK2MSFTNGP12.phx.gbl...
Kevin,

If the user is using IE6, what are you saying?
Is it a setup issue.
or a random some do some don't
??
Thanks

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uE**************@TK2MSFTNGP10.phx.gbl...
You can't count on the browser that the user is using to share Sessions
across browser instances. Some do, and some don't.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
When we open a window (using client-side jscript ie.
window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
page Popup.aspx does not have access to the Session variables present
in Page1.aspx. The IIS Log shows (listed below) shows that the
ASP.NET_SessionId cookie is not present in Popup.aspx.

The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.

Any ideas on how to debug this or resolve this?

#Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
sc-status cs(User-Agent) cs(Cookie)
2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
action=Edit%20a%20Driver 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx
Level1Text=BROTHERS%20CO 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55



Nov 17 '05 #3
Kevin,

He said the following:
The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.
Since this only one user is on IE6, I got confused to what you said.

Thank you.
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm not saying anything regarding the specific browser he mentioned (I don't know specifically about IE6). I'm saying what I said: You can't count on the browser that the user is using to share Sessions across browser instances.
Some [browsers] do, and some don't. If he knew that all of his users were
going to use the same browser, this might be a viable method, but since he
doesn't, it's not.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:eU**************@TK2MSFTNGP12.phx.gbl...
Kevin,

If the user is using IE6, what are you saying?
Is it a setup issue.
or a random some do some don't
??
Thanks

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uE**************@TK2MSFTNGP10.phx.gbl...
You can't count on the browser that the user is using to share

Sessions across browser instances. Some do, and some don't.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
> When we open a window (using client-side jscript ie.
> window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
> page Popup.aspx does not have access to the Session variables present > in Page1.aspx. The IIS Log shows (listed below) shows that the
> ASP.NET_SessionId cookie is not present in Popup.aspx.
>
> The thing is that this mechanism works for 99% of our users. There is > this one user that is consistently having this problem. As you can
> see from the log, this user is on IE6 and has Windows NT.
>
> Any ideas on how to debug this or resolve this?
>
> #Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
> sc-status cs(User-Agent) cs(Cookie)
> 2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
> action=Edit%20a%20Driver 200
> Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
> 2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx > Level1Text=BROTHERS%20CO 200
> Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
> 2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
> Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55



Nov 17 '05 #4
Jimmy,

Since this user is using IE sessions should be maintained it is most likely
that this user has cookies disabled. Sessions use cookies to store the
session ID on the client.

Kevin is right unless users are using the same browser AND have cookies
enabled you can't count on sessions.

There are two things you can try. You could set your app to use cookieless
sessions (use web.config file to do so.) This puts the session ID into the
query string (make sure to get the session id out of the query string if you
use javascript to open a new window and put it in the url.) Or you could
check if users have cookies enabled Request.Browser.Cookies and redirect the
user to a page telling them why they need to enable cookies and how to do
so.

If Not Request.Browser.Cookies Then
Response.Redirect("musthavecookies.aspx")
End If

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
When we open a window (using client-side jscript ie.
window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
page Popup.aspx does not have access to the Session variables present
in Page1.aspx. The IIS Log shows (listed below) shows that the
ASP.NET_SessionId cookie is not present in Popup.aspx.

The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.

Any ideas on how to debug this or resolve this?

#Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
sc-status cs(User-Agent) cs(Cookie)
2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
action=Edit%20a%20Driver 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx
Level1Text=BROTHERS%20CO 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55

Nov 17 '05 #5
I knew that the user in question was using IE6, but since I din't know for
sure that IE6 doesn't share Sessions across browser instances (it sounds
like not), I just gave him the important information, that is, etc.

I can certainly appreciate your confusion. I get confused every day, and not
always on purpose! ;-)

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:e0*************@TK2MSFTNGP12.phx.gbl...
Kevin,

He said the following:
> The thing is that this mechanism works for 99% of our users. There is > this one user that is consistently having this problem. As you can
> see from the log, this user is on IE6 and has Windows NT.
Since this only one user is on IE6, I got confused to what you said.

Thank you.
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm not saying anything regarding the specific browser he mentioned (I don't
know specifically about IE6). I'm saying what I said: You can't count on

the
browser that the user is using to share Sessions across browser instances. Some [browsers] do, and some don't. If he knew that all of his users were going to use the same browser, this might be a viable method, but since he doesn't, it's not.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:eU**************@TK2MSFTNGP12.phx.gbl...
Kevin,

If the user is using IE6, what are you saying?
Is it a setup issue.
or a random some do some don't
??
Thanks

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uE**************@TK2MSFTNGP10.phx.gbl...
> You can't count on the browser that the user is using to share

Sessions > across browser instances. Some do, and some don't.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> .Net Developer
> http://www.takempis.com
> The more I learn, the less I know.
>
> "Jimmy Junatas" <ji***********@usbank.com> wrote in message
> news:4d**************************@posting.google.c om...
> > When we open a window (using client-side jscript ie.
> > window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called > > page Popup.aspx does not have access to the Session variables present > > in Page1.aspx. The IIS Log shows (listed below) shows that the
> > ASP.NET_SessionId cookie is not present in Popup.aspx.
> >
> > The thing is that this mechanism works for 99% of our users. There is
> > this one user that is consistently having this problem. As you
can > > see from the log, this user is on IE6 and has Windows NT.
> >
> > Any ideas on how to debug this or resolve this?
> >
> > #Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
> > sc-status cs(User-Agent) cs(Cookie)
> > 2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
> > action=Edit%20a%20Driver 200
> > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> > ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
> > 2003-08-22 16:57:59 278.179.45.71 443 GET

/Site/Popup/Lookup_Orgs.aspx > > Level1Text=BROTHERS%20CO 200
> > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
> > 2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
> > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> > ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
>
>



Nov 17 '05 #6
Same here thanks

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:uj**************@TK2MSFTNGP09.phx.gbl...
I knew that the user in question was using IE6, but since I din't know for
sure that IE6 doesn't share Sessions across browser instances (it sounds
like not), I just gave him the important information, that is, etc.

I can certainly appreciate your confusion. I get confused every day, and not always on purpose! ;-)

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:e0*************@TK2MSFTNGP12.phx.gbl...
Kevin,

He said the following:
> > The thing is that this mechanism works for 99% of our users. There
is
> > this one user that is consistently having this problem. As you
can > > see from the log, this user is on IE6 and has Windows NT.
Since this only one user is on IE6, I got confused to what you said.

Thank you.
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
I'm not saying anything regarding the specific browser he mentioned (I

don't
know specifically about IE6). I'm saying what I said: You can't count on
the
browser that the user is using to share Sessions across browser

instances. Some [browsers] do, and some don't. If he knew that all of his users were going to use the same browser, this might be a viable method, but
since he doesn't, it's not.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
http://www.takempis.com
The more I learn, the less I know.

"MS News (MS ILM)" <sq***********@hotmail.com> wrote in message
news:eU**************@TK2MSFTNGP12.phx.gbl...
> Kevin,
>
> If the user is using IE6, what are you saying?
> Is it a setup issue.
> or a random some do some don't
> ??
> Thanks
>
> "Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
> news:uE**************@TK2MSFTNGP10.phx.gbl...
> > You can't count on the browser that the user is using to share

Sessions
> > across browser instances. Some do, and some don't.
> >
> > --
> > HTH,
> >
> > Kevin Spencer
> > Microsoft MVP
> > .Net Developer
> > http://www.takempis.com
> > The more I learn, the less I know.
> >
> > "Jimmy Junatas" <ji***********@usbank.com> wrote in message
> > news:4d**************************@posting.google.c om...
> > > When we open a window (using client-side jscript ie.
> > > window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called > > > page Popup.aspx does not have access to the Session variables

present
> > > in Page1.aspx. The IIS Log shows (listed below) shows that the
> > > ASP.NET_SessionId cookie is not present in Popup.aspx.
> > >
> > > The thing is that this mechanism works for 99% of our users. There
is
> > > this one user that is consistently having this problem. As you

can > > > see from the log, this user is on IE6 and has Windows NT.
> > >
> > > Any ideas on how to debug this or resolve this?
> > >
> > > #Fields: date time c-ip s-port cs-method cs-uri-stem

cs-uri-query > > > sc-status cs(User-Agent) cs(Cookie)
> > > 2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
> > > action=Edit%20a%20Driver 200
> > > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> > > ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
> > > 2003-08-22 16:57:59 278.179.45.71 443 GET

/Site/Popup/Lookup_Orgs.aspx
> > > Level1Text=BROTHERS%20CO 200
> > > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
> > > 2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200 > > > Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
> > > ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
> >
> >
>
>



Nov 17 '05 #7
Thanks everyone for their inputs.

Using Cookieless sessions is certainly an option but I don't want to
rock the boat too much given that only one user (so far) is
experiencing this problem.

In this particular scenario, I am also hesitant about sharing
information thru the QueryString or hidden fields the data being
shared is somewhat sensitive (the site is for a bank).

As for checking for cookies, we actually already have a check at login
that requires that the user has IE5 (and up) and that cookie support
(and Javascript) are enabled.

And also, the rest of the site works for that user (so the session
cookie must have been persisted in the client). Only that popup
window page fails.

I did learn yesterday that the user has IE 6.0.2600 Update Version :
Q319182. I saw numerous posts yesterday complaining about Q319182.
I'll see about upgrading that user to latest IE6 service pack.
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message news:<ul**************@TK2MSFTNGP10.phx.gbl>...
Jimmy,

Since this user is using IE sessions should be maintained it is most likely
that this user has cookies disabled. Sessions use cookies to store the
session ID on the client.

Kevin is right unless users are using the same browser AND have cookies
enabled you can't count on sessions.

There are two things you can try. You could set your app to use cookieless
sessions (use web.config file to do so.) This puts the session ID into the
query string (make sure to get the session id out of the query string if you
use javascript to open a new window and put it in the url.) Or you could
check if users have cookies enabled Request.Browser.Cookies and redirect the
user to a page telling them why they need to enable cookies and how to do
so.

If Not Request.Browser.Cookies Then
Response.Redirect("musthavecookies.aspx")
End If

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
When we open a window (using client-side jscript ie.
window.open("/Site/Popup.aspx?...",...)) from Page1.aspx, the called
page Popup.aspx does not have access to the Session variables present
in Page1.aspx. The IIS Log shows (listed below) shows that the
ASP.NET_SessionId cookie is not present in Popup.aspx.

The thing is that this mechanism works for 99% of our users. There is
this one user that is consistently having this problem. As you can
see from the log, this user is on IE6 and has Windows NT.

Any ideas on how to debug this or resolve this?

#Fields: date time c-ip s-port cs-method cs-uri-stem cs-uri-query
sc-status cs(User-Agent) cs(Cookie)
2003-08-22 16:57:51 278.179.45.71 443 GET /Site/Page1.aspx
action=Edit%20a%20Driver 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55
2003-08-22 16:57:59 278.179.45.71 443 GET /Site/Popup/Lookup_Orgs.aspx
Level1Text=BROTHERS%20CO 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1) -
2003-08-22 16:58:12 278.179.45.71 443 GET /Site/logout.aspx - 200
Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1)
ASP.NET_SessionId=yarvyqz3hl11yda3vouk2x55

Nov 17 '05 #8
The ASPX page for the popup window is now working for that 1 user! It
appears that the user was navigating to our site from a link in
Microsoft Outlook. The popup page fails every single time the user
comes in from the Outlook. But if the user loads IE and navigates
from there, the popup page works as expected.

Could it be that the popup window page lives in an IE process while
the other pages are hosted in the Outlook process...translates to
seperate ASP.NET sessions?

Also, the user's IE6 browser was upgraded to SP1 but the problem was
still occurring.

Thanks everyone.
Nov 17 '05 #9
Yes when the user clicks a link from outlook it starts a new version of the
browser. This means that it is no longer on the session that they were with
another window.

Stanley
"Jimmy Junatas" <ji***********@usbank.com> wrote in message
news:4d**************************@posting.google.c om...
The ASPX page for the popup window is now working for that 1 user! It
appears that the user was navigating to our site from a link in
Microsoft Outlook. The popup page fails every single time the user
comes in from the Outlook. But if the user loads IE and navigates
from there, the popup page works as expected.

Could it be that the popup window page lives in an IE process while
the other pages are hosted in the Outlook process...translates to
seperate ASP.NET sessions?

Also, the user's IE6 browser was upgraded to SP1 but the problem was
still occurring.

Thanks everyone.

Nov 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Terry | last post by:
When launching our application with Internet Explorer already opened, but not pointing to our web server, the session variables disappear. If you open I.E. after launching our app, it works fine....
2
by: James | last post by:
Session("UserName") is set when someone logs in. Get to a page that displays a record where you can type a comment. The form has an onSubmit event that calls a javascript function. That function...
2
by: Joe Molloy | last post by:
Hi, This isn't a mission critical question but I thought I'dl throw it out there for your feedback as it's a bit curious. I have developed a shopping cart for an application I'm working on...
1
by: Nauck, Uwe | last post by:
I would like to open, within a session, a new java script popup window. Now I have the problem, that i lost the session in the new popup window. Can you help me, to solve this problem? Thank you.
1
by: Alex | last post by:
Hi I am currently working on a project and i happened to encountered a problem which is very pricky. I have used formsAuthentication in my project. Manually codes an authenticationTicket. And...
2
by: andrewjknox | last post by:
Dear all, This is really a one-off problem and only applies to a single user. The site is hosted on a windows 2003 machine with users accessing it across a local network. Basically, a user on...
1
by: gvrajkumar | last post by:
Hi Popup window is opened and after some time session has expired. After session expire, if the user tries to make any actions on the popup page the user is redirected to login.jsp page. What...
1
by: magix8 | last post by:
Hi, I have a portal with logon session coded in ASP. From the Portal Main screen, i access to a popup-window screen to do my activity. Whenever session expired, the popup-window screen will...
4
by: goscottie | last post by:
I used submodal as my popup window. With some tweaks, it working great in my app. However, I can't find a way to detect session timeout in the popup window. The app is a form based...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.