473,396 Members | 1,813 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,396 software developers and data experts.

Session problem? not holding

We have over 130 new users that signed on within 3 weeks. Once in a great
while we get email from some user who cannot create account successfully.

Here is the scenario

New user will need to create an account so they will click on create account
button. First page will ask for special code and then click on continue
which they have no problem with and the code is stored in session before
moving on to next page. The 2nd page is where the user will create the user
name, password, enter address, and so on. There is two buttons on that page
that are clear and continue. When the user clicks on continue, it will save
those information to the database and some into session that needs to be
carry over to the 3rd page. When they click on continue, it takes them back
to the home page (default.aspx) and no data is stored into the database (MS
SQL). We have two users so far that cannot do this. I am guessing it is
settings in the Internet browser but any idea what I need to look for?
Session expired?

I use response.redirect to control, which pages they need to go to. In the
continue button click event, there is only one response.redirect that takes
them to the 3rd page. On the 3rd page' load event, I check for session
(username) for emptiness and if it is then I send them to the default page
so obvious something is wrong with the session. I am thinking it is expired
or settings in the Internet browser but what do I check for?
Nov 17 '05 #1
3 1316
Since it is a some specific users issue, it is most likely to be some
settings in their browser. Just check in the
Tools-->Internet Options-->Privacy-->Advanced that browser is configured to
accept cookies.
Alternatively try using sessionless cookies and see if that makes the users
work.

HTH
options
"Grant" <Gr***@nutrikids.com> wrote in message
news:Oy**************@TK2MSFTNGP10.phx.gbl...
We have over 130 new users that signed on within 3 weeks. Once in a great
while we get email from some user who cannot create account successfully.

Here is the scenario

New user will need to create an account so they will click on create account button. First page will ask for special code and then click on continue
which they have no problem with and the code is stored in session before
moving on to next page. The 2nd page is where the user will create the user name, password, enter address, and so on. There is two buttons on that page that are clear and continue. When the user clicks on continue, it will save those information to the database and some into session that needs to be
carry over to the 3rd page. When they click on continue, it takes them back to the home page (default.aspx) and no data is stored into the database (MS SQL). We have two users so far that cannot do this. I am guessing it is
settings in the Internet browser but any idea what I need to look for?
Session expired?

I use response.redirect to control, which pages they need to go to. In the
continue button click event, there is only one response.redirect that takes them to the 3rd page. On the 3rd page' load event, I check for session
(username) for emptiness and if it is then I send them to the default page
so obvious something is wrong with the session. I am thinking it is expired or settings in the Internet browser but what do I check for?

Nov 17 '05 #2
I am fairly new, how would I go sessionless cookies?
"Vaibhav" <co************@yahoo.com> wrote in message
news:ej**************@TK2MSFTNGP10.phx.gbl...
Since it is a some specific users issue, it is most likely to be some
settings in their browser. Just check in the
Tools-->Internet Options-->Privacy-->Advanced that browser is configured to accept cookies.
Alternatively try using sessionless cookies and see if that makes the users work.

HTH
options
"Grant" <Gr***@nutrikids.com> wrote in message
news:Oy**************@TK2MSFTNGP10.phx.gbl...
We have over 130 new users that signed on within 3 weeks. Once in a great while we get email from some user who cannot create account successfully.
Here is the scenario

New user will need to create an account so they will click on create

account
button. First page will ask for special code and then click on continue
which they have no problem with and the code is stored in session before
moving on to next page. The 2nd page is where the user will create the

user
name, password, enter address, and so on. There is two buttons on that

page
that are clear and continue. When the user clicks on continue, it will

save
those information to the database and some into session that needs to be
carry over to the 3rd page. When they click on continue, it takes them

back
to the home page (default.aspx) and no data is stored into the database

(MS
SQL). We have two users so far that cannot do this. I am guessing it is
settings in the Internet browser but any idea what I need to look for?
Session expired?

I use response.redirect to control, which pages they need to go to. In the continue button click event, there is only one response.redirect that

takes
them to the 3rd page. On the 3rd page' load event, I check for session
(username) for emptiness and if it is then I send them to the default page so obvious something is wrong with the session. I am thinking it is

expired
or settings in the Internet browser but what do I check for?


Nov 17 '05 #3
"Grant" <Gr***@nutrikids.com> wrote
I am fairly new, how would I go sessionless cookies?


Open the web.config file and search for the <sessionState tag.
Then set cookieless="true"
--

Thanks,
Carl Prothman
Microsoft ASP.NET MVP
http://www.able-consulting.com
Nov 17 '05 #4

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

Similar topics

1
by: Gary | last post by:
i have a project which is include ASP, VB, VB COM, MTS, IIS. when the user enter the site the user is asked to login using UserID and Password after that i am passing those values to COM Objects...
1
by: Vetrivel | last post by:
Application architecture : Develop interface between two existing systems, a. Enterprise CRM system b. Web based intranet system. Environment : Intranet Server : IIS and ASP. Script :...
4
by: DeeAnn | last post by:
We've encountered a "flaky" situation with a Session variable holding a data set on load balanced servers; server session with cookies is set up. Background: Session variable holds a dataset. ...
6
by: Gonenc Ercan | last post by:
Hi, I ve ended up debugging a ASP.NET project (with about 380 files on the project .NET Framework 1.0 on IIS 5.0) which has a memory leak... The memory rises too fast. With about 25-30 active...
6
by: Just D | last post by:
Hi, How slowly is to work with these objects - Application and Session ? Is it much better to create a huge project or some static library and place all variables/constants there instead of many...
4
by: | last post by:
I'm not sure what to think of this. In the appliacation, upon postback, users screens will get mixed up. Meaning... Perhaps on my screen im working with a particular set of data. I click a button...
5
by: Steven Blair | last post by:
I have the following code: Session = new CurrentUser("TEST"); When I postback to the server, the Session is null. My guess is a only the refence to my actual class is stored, rather than the...
1
by: Hans Kesting | last post by:
Hi, Is it possible to share sessions between subdomains? Say: the user logs in at www.company.com, and is redirected to my.company.com. This is a different url for the same application. Can I...
4
by: Jack Black | last post by:
Hi, all! Developed a basic ASP web site with MS Access 2k3 as a database back end. I've developed it on two different Win2k3 servers, and app works flawlessly on both. However, we just moved it...
1
by: =?Utf-8?B?QXZp?= | last post by:
Hi I have an interesting issue, I hope someone can shead light on: I have a 2 server "web farm" with a web app that produces image files. To ensure synchronization of content on both machines,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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?
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,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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,...

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.