473,385 Members | 1,641 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Session State does not end after closing browser

Hello All,

I am having an issue with thus far one computer on my client's web site. If the user loads the shopping cart and then closes all browser windows, then opens them back up, goes back to the site, the shopping cart information is there! The shopping cart info is only loaded into a session variable! There are no cookies on the site to store this information. Am I mistaken in believing when a browser window is closed that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
Jul 22 '05 #1
11 5037
Not necessarily. The session will actually "go away" when it times out. That
said, if they close and reopen it should be a new session, if its not then
they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site. If
the user loads the shopping cart and then closes all browser windows, then
opens them back up, goes back to the site, the shopping cart information is
there! The shopping cart info is only loaded into a session variable! There
are no cookies on the site to store this information. Am I mistaken in
believing when a browser window is closed that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com

Jul 22 '05 #2
I am the developer of this application, and the only thing we are using are
sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out.
That said, if they close and reopen it should be a new session, if its not
then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site.
If the user loads the shopping cart and then closes all browser windows,
then opens them back up, goes back to the site, the shopping cart
information is there! The shopping cart info is only loaded into a session
variable! There are no cookies on the site to store this information. Am I
mistaken in believing when a browser window is closed that the session
state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com

Jul 22 '05 #3
First, is this traditional ASP or ASP.NET?

In "traditional" ASP (we should start calling it "classic") sessions are
maintained by an in-memory session id cookie. As long as the browser keeps
sending the same cookie the server will connect it to the associated
session. The session data resides in memory on the server and is retained
until the session times out from inactivity (no new ASP requests) or
session.abandon is called.

An in-memory cookie should be destroyed when the browser's process is
closed. What browser and version are you using? Are you using another
application that launches the browser for you?

Try displaying the session id (Session.SessionID) on a page and see if it
remains the same after the browser is closed and re-started.

If you are using ASP.NET you will need to ask on a .net newsgroup.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using are sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out.
That said, if they close and reopen it should be a new session, if its not then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site.
If the user loads the shopping cart and then closes all browser windows,
then opens them back up, goes back to the site, the shopping cart
information is there! The shopping cart info is only loaded into a session variable! There are no cookies on the site to store this information. Am I mistaken in believing when a browser window is closed that the session
state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


Jul 22 '05 #4
are the cart items stored in a DB or just in the session? what are you using
as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using are
sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out.
That said, if they close and reopen it should be a new session, if its
not then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site.
If the user loads the shopping cart and then closes all browser windows,
then opens them back up, goes back to the site, the shopping cart
information is there! The shopping cart info is only loaded into a
session variable! There are no cookies on the site to store this
information. Am I mistaken in believing when a browser window is closed
that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


Jul 22 '05 #5
I thought about that possiblity as well, if the browser never really closes.
I've asked my client to check the processes in task manager to verify that
it closes.

And yes, it is classic ASP.

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Mark Schupp" <no****@nospam.com> wrote in message
news:e9**************@tk2msftngp13.phx.gbl...
First, is this traditional ASP or ASP.NET?

In "traditional" ASP (we should start calling it "classic") sessions are
maintained by an in-memory session id cookie. As long as the browser keeps
sending the same cookie the server will connect it to the associated
session. The session data resides in memory on the server and is retained
until the session times out from inactivity (no new ASP requests) or
session.abandon is called.

An in-memory cookie should be destroyed when the browser's process is
closed. What browser and version are you using? Are you using another
application that launches the browser for you?

Try displaying the session id (Session.SessionID) on a page and see if it
remains the same after the browser is closed and re-started.

If you are using ASP.NET you will need to ask on a .net newsgroup.

--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using

are
sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
> Not necessarily. The session will actually "go away" when it times out.
> That said, if they close and reopen it should be a new session, if its not > then they must be using something more then JUST sessions.....
>
> --
> Curt Christianson
> Site & Scripts: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
> news:%2****************@TK2MSFTNGP09.phx.gbl...
> Hello All,
>
> I am having an issue with thus far one computer on my client's web
> site.
> If the user loads the shopping cart and then closes all browser
> windows,
> then opens them back up, goes back to the site, the shopping cart
> information is there! The shopping cart info is only loaded into a session > variable! There are no cookies on the site to store this information.
> Am I > mistaken in believing when a browser window is closed that the session
> state is lost?
>
> I don't know what browser it is, but should that matter?
>
> Thanks a million!!
>
> --
> David Lozzi
> Web Applications/Network Specialist
> Delphi Technology Solutions, Inc.
> dlozzi(remove-this)@delphi-ts.com
>
>
>



Jul 22 '05 #6
cart items are only in a session variable, not a db

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
are the cart items stored in a DB or just in the session? what are you
using as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using
are sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out.
That said, if they close and reopen it should be a new session, if its
not then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site.
If the user loads the shopping cart and then closes all browser windows,
then opens them back up, goes back to the site, the shopping cart
information is there! The shopping cart info is only loaded into a
session variable! There are no cookies on the site to store this
information. Am I mistaken in believing when a browser window is closed
that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com



Jul 22 '05 #7
Don't they just pick past pages from the cache ?

Patrice

--

"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> a écrit dans le message de
news:%2****************@TK2MSFTNGP11.phx.gbl...
cart items are only in a session variable, not a db

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
are the cart items stored in a DB or just in the session? what are you
using as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using
are sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out. That said, if they close and reopen it should be a new session, if its
not then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web site. If the user loads the shopping cart and then closes all browser windows, then opens them back up, goes back to the site, the shopping cart
information is there! The shopping cart info is only loaded into a
session variable! There are no cookies on the site to store this
information. Am I mistaken in believing when a browser window is closed that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com




Jul 22 '05 #8
Proxy/Cache server inbetween?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
cart items are only in a session variable, not a db

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
are the cart items stored in a DB or just in the session? what are you
using as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using
are sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
Not necessarily. The session will actually "go away" when it times out.
That said, if they close and reopen it should be a new session, if its
not then they must be using something more then JUST sessions.....

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hello All,

I am having an issue with thus far one computer on my client's web
site. If the user loads the shopping cart and then closes all browser
windows, then opens them back up, goes back to the site, the shopping
cart information is there! The shopping cart info is only loaded into a
session variable! There are no cookies on the site to store this
information. Am I mistaken in believing when a browser window is closed
that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com




Jul 22 '05 #9
On Thu, 27 Jan 2005 10:20:45 -0500, "David Lozzi"
<dlozzi@(remove-this)delphi-ts.com> wrote:
Hello All,

I am having an issue with thus far one computer on my client's web site. If the user loads the shopping cart and then closes all browser windows, then opens them back up, goes back to the site, the shopping cart information is there! The shopping cart info is only loaded into a session variable! There are no cookies on the site to store this information. Am I mistaken in believing when a browser window is closed that the session state is lost?

I don't know what browser it is, but should that matter?

Thanks a million!!


With IE at least, all the currently open browser windows need to be
closed, not just the one for the site in question, so make sure
nothing else is open.

I

--
Iain Norman | http://www.eliteforum.org
Jul 22 '05 #10
Not that I am aware of. She is one of about 40 users wihtin the same
network, and only she is having the issue. Her browser is IE version 6 on
Win2k Pro. My client is going to check to see if IE really does close or if
there are is any malware running.

Thanks,

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
Proxy/Cache server inbetween?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
cart items are only in a session variable, not a db

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
are the cart items stored in a DB or just in the session? what are you
using as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
I am the developer of this application, and the only thing we are using
are sessions, there are no cookies. What else could possibly cause this?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eA**************@TK2MSFTNGP12.phx.gbl...
> Not necessarily. The session will actually "go away" when it times
> out. That said, if they close and reopen it should be a new session,
> if its not then they must be using something more then JUST
> sessions.....
>
> --
> Curt Christianson
> Site & Scripts: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
> news:%2****************@TK2MSFTNGP09.phx.gbl...
> Hello All,
>
> I am having an issue with thus far one computer on my client's web
> site. If the user loads the shopping cart and then closes all browser
> windows, then opens them back up, goes back to the site, the shopping
> cart information is there! The shopping cart info is only loaded into
> a session variable! There are no cookies on the site to store this
> information. Am I mistaken in believing when a browser window is
> closed that the session state is lost?
>
> I don't know what browser it is, but should that matter?
>
> Thanks a million!!
>
> --
> David Lozzi
> Web Applications/Network Specialist
> Delphi Technology Solutions, Inc.
> dlozzi(remove-this)@delphi-ts.com
>
>
>



Jul 22 '05 #11
Ahhh,..... ONE PC.
That makes all the dif in the world. Not a server issue then most likely...
:}

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:ur**************@TK2MSFTNGP10.phx.gbl...
Not that I am aware of. She is one of about 40 users wihtin the same
network, and only she is having the issue. Her browser is IE version 6 on
Win2k Pro. My client is going to check to see if IE really does close or
if there are is any malware running.

Thanks,

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
Proxy/Cache server inbetween?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
cart items are only in a session variable, not a db

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com
"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
are the cart items stored in a DB or just in the session? what are you
using as the ID/link to the items if in a db?

--
Curt Christianson
Site & Scripts: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com
"David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
news:eM**************@tk2msftngp13.phx.gbl...
>I am the developer of this application, and the only thing we are using
>are sessions, there are no cookies. What else could possibly cause
>this?
>
> --
> David Lozzi
> Web Applications/Network Specialist
> Delphi Technology Solutions, Inc.
> dlozzi(remove-this)@delphi-ts.com
>
>
> "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
> news:eA**************@TK2MSFTNGP12.phx.gbl...
>> Not necessarily. The session will actually "go away" when it times
>> out. That said, if they close and reopen it should be a new session,
>> if its not then they must be using something more then JUST
>> sessions.....
>>
>> --
>> Curt Christianson
>> Site & Scripts: http://www.Darkfalz.com
>> Blog: http://blog.Darkfalz.com
>>
>>
>> "David Lozzi" <dlozzi@(remove-this)delphi-ts.com> wrote in message
>> news:%2****************@TK2MSFTNGP09.phx.gbl...
>> Hello All,
>>
>> I am having an issue with thus far one computer on my client's web
>> site. If the user loads the shopping cart and then closes all browser
>> windows, then opens them back up, goes back to the site, the shopping
>> cart information is there! The shopping cart info is only loaded into
>> a session variable! There are no cookies on the site to store this
>> information. Am I mistaken in believing when a browser window is
>> closed that the session state is lost?
>>
>> I don't know what browser it is, but should that matter?
>>
>> Thanks a million!!
>>
>> --
>> David Lozzi
>> Web Applications/Network Specialist
>> Delphi Technology Solutions, Inc.
>> dlozzi(remove-this)@delphi-ts.com
>>
>>
>>
>
>



Jul 22 '05 #12

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

Similar topics

9
by: Pack Fan | last post by:
I've noticed that session variables will persist on Mac IE even after all browser windows have been closed. One must quit the program to clear the session variables. This presents a security risk...
5
by: Phil Grimpo | last post by:
I have a very odd situation here. I have an administration page, where based on a users permissions, a recordset is called from the SQL server which has a list of paths to "Module Menus". Each of...
3
by: Richard P | last post by:
I am experiencing some browser weirdness. My app uses session state to hide values I prefer to keep out of the querystring. I am testing to see what happens when cookies are fully disabled in IE...
5
by: news.microsoft.com | last post by:
Hi everyone, I need some help (may be in the form of some sample code) for the subject question. I have an ASP.NET/C# application. I need to do quite a few tasks when the session ends. I...
8
by: ari | last post by:
hey all, i'm trying to make my app as stateless as possible. is it ok to create a dataset and store in viewstate and whenever the user decides to select a from that dataset, to move from...
5
by: Sean | last post by:
Problem with sessions I have created an application without concern for sessions. As it turns out I think that might be my undoing. What I have: I have an online quiz. I don’t need to know...
18
by: BillE | last post by:
When a user opens a new IE browser window using File-New-Window the integrity of an application which relies on session state is COMPLETELY undermined. Anyone who overlooks the fact that...
3
by: mcbobin | last post by:
Hi, Hopefully somebody can help me... The development team I work in has created a large application that has started displaying some nasty bugs which we think are being caused by the...
11
by: Glenn | last post by:
Hi I've been experimenting with managing state using the Session object. I've created a simple WS with a couple of methods, one which sets a string value, another that retrieves it. Each...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.