473,385 Members | 1,693 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.

Some users cannot fill out the user account.

I have some users cannot fill out the user account information. First page
ask them for a code then the second page ask for the user information. When
they click on continue in user information page, it takes them back to the
default page. I have a if statement "if session(user_name") = "" then
response.redirect ("default.aspx") . Why is the session variables not
holding or not being populated? I changed the session state to "stateserver"
but it is not helping. This does not work for ten out of 600 users.

Any idea what is going on?
Nov 17 '05 #1
5 1800
Grant,

Sessions depend on cookies. Do these users have cookies disabled?

You can switch sessions to run in cookieless mode (which uses the query
string instead). It may fix your problem.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Grant" <Gr*************@nutrikids.com> wrote in message
news:OM**************@TK2MSFTNGP12.phx.gbl...
I have some users cannot fill out the user account information. First page
ask them for a code then the second page ask for the user information. When they click on continue in user information page, it takes them back to the
default page. I have a if statement "if session(user_name") = "" then
response.redirect ("default.aspx") . Why is the session variables not
holding or not being populated? I changed the session state to "stateserver" but it is not helping. This does not work for ten out of 600 users.

Any idea what is going on?

Nov 17 '05 #2
I assume you mean setting the cookieless to true in web.config. If so, I had
problem with that because the images were not loading anymore and the
website did not honor the CSS file because the url shows localhost/pay/(some
garbage here)/default.aspx.

Why and how can I correct that?

How is the information stored it cookie is set to true?
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Grant,

Sessions depend on cookies. Do these users have cookies disabled?

You can switch sessions to run in cookieless mode (which uses the query
string instead). It may fix your problem.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Grant" <Gr*************@nutrikids.com> wrote in message
news:OM**************@TK2MSFTNGP12.phx.gbl...
I have some users cannot fill out the user account information. First page ask them for a code then the second page ask for the user information.

When
they click on continue in user information page, it takes them back to the default page. I have a if statement "if session(user_name") = "" then
response.redirect ("default.aspx") . Why is the session variables not
holding or not being populated? I changed the session state to

"stateserver"
but it is not helping. This does not work for ten out of 600 users.

Any idea what is going on?


Nov 17 '05 #3
Were you using full URL paths or relative paths for your CSS and images?

"Grant" <Gr*************@nutrikids.com> wrote in message
news:OQ****************@tk2msftngp13.phx.gbl...
I assume you mean setting the cookieless to true in web.config. If so, I had problem with that because the images were not loading anymore and the
website did not honor the CSS file because the url shows localhost/pay/(some garbage here)/default.aspx.

Why and how can I correct that?

How is the information stored it cookie is set to true?
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Grant,

Sessions depend on cookies. Do these users have cookies disabled?

You can switch sessions to run in cookieless mode (which uses the query
string instead). It may fix your problem.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Grant" <Gr*************@nutrikids.com> wrote in message
news:OM**************@TK2MSFTNGP12.phx.gbl...
I have some users cannot fill out the user account information. First page ask them for a code then the second page ask for the user information.

When
they click on continue in user information page, it takes them back to the default page. I have a if statement "if session(user_name") = "" then
response.redirect ("default.aspx") . Why is the session variables not
holding or not being populated? I changed the session state to

"stateserver"
but it is not helping. This does not work for ten out of 600 users.

Any idea what is going on?



Nov 17 '05 #4
I am using relative path.
"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
Were you using full URL paths or relative paths for your CSS and images?

"Grant" <Gr*************@nutrikids.com> wrote in message
news:OQ****************@tk2msftngp13.phx.gbl...
I assume you mean setting the cookieless to true in web.config. If so, I

had
problem with that because the images were not loading anymore and the
website did not honor the CSS file because the url shows

localhost/pay/(some
garbage here)/default.aspx.

Why and how can I correct that?

How is the information stored it cookie is set to true?
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Grant,

Sessions depend on cookies. Do these users have cookies disabled?

You can switch sessions to run in cookieless mode (which uses the query string instead). It may fix your problem.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
"Grant" <Gr*************@nutrikids.com> wrote in message
news:OM**************@TK2MSFTNGP12.phx.gbl...
> I have some users cannot fill out the user account information. First
page
> ask them for a code then the second page ask for the user
information. When
> they click on continue in user information page, it takes them back to the
> default page. I have a if statement "if session(user_name") = ""

then > response.redirect ("default.aspx") . Why is the session variables not > holding or not being populated? I changed the session state to
"stateserver"
> but it is not helping. This does not work for ten out of 600 users. >
>
>
> Any idea what is going on?
>
>



Nov 17 '05 #5
Here is the scope.

I have set the cookieless to true. In order for the CSS and the image to
work correctly, I had to add aspnet_filter.dll to the ISAPI Filters tab.

I will let you know if the user continues to have problem or not.

"Grant" <Gr*************@nutrikids.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
I am using relative path.
"Marina" <zl*******@nospam.hotmail.com> wrote in message
news:uJ**************@TK2MSFTNGP09.phx.gbl...
Were you using full URL paths or relative paths for your CSS and images?

"Grant" <Gr*************@nutrikids.com> wrote in message
news:OQ****************@tk2msftngp13.phx.gbl...
I assume you mean setting the cookieless to true in web.config. If so,
I
had
problem with that because the images were not loading anymore and the
website did not honor the CSS file because the url shows localhost/pay/(some
garbage here)/default.aspx.

Why and how can I correct that?

How is the information stored it cookie is set to true?
"S. Justin Gengo" <sj*****@aboutfortunate.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
> Grant,
>
> Sessions depend on cookies. Do these users have cookies disabled?
>
> You can switch sessions to run in cookieless mode (which uses the

query > string instead). It may fix your problem.
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> www.aboutfortunate.com
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Grant" <Gr*************@nutrikids.com> wrote in message
> news:OM**************@TK2MSFTNGP12.phx.gbl...
> > I have some users cannot fill out the user account information. First page
> > ask them for a code then the second page ask for the user information. > When
> > they click on continue in user information page, it takes them
back to the
> > default page. I have a if statement "if session(user_name") = "" then > > response.redirect ("default.aspx") . Why is the session variables not > > holding or not being populated? I changed the session state to
> "stateserver"
> > but it is not helping. This does not work for ten out of 600
users.
>
> >
> >
> > Any idea what is going on?
> >
> >
>
>



Nov 17 '05 #6

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

Similar topics

0
by: AndyAFCW | last post by:
I am developing my first .NET application that connects to a SQL Server 2000 database and I am having a total nightmare :x :evil: I am running Windows 2000 with Visual Studio .NET version...
4
by: Kristof Despiere | last post by:
Suppose you have one domain, filled with a couple of users. What needs to be done now is I need to start a windows application from a webform by pressing a button on the webform (for example). ...
4
by: Dan | last post by:
hi ng. i have a strange behaviour when i want to control who can access a web application by setting web.config like: <authorization> <allow users="DOMAIN\ACCOUNT,..." /> <deny users="*" /> ...
2
by: google | last post by:
Setup: --------- Windows XP Pro SP1 (SP1 is not by my choice). 512MB RAM 3.2Ghz DotNet v1.1.4322 VS.NET 2003 Issue: -----------
1
by: tangus via DotNetMonster.com | last post by:
Hello all, I'm really struggling with getting some Active Directory code to work in ASP.NET. Can you please provide assistance? I am executing the following code: Dim enTry As DirectoryEntry =...
2
by: Rico | last post by:
Hello, I have an ASP web app with an SQL back end. I am currently migrating to a new Windows 2003 Server machine and SQL Server 2005 Express. When I import the old database, I'm trying to...
3
by: Gary T via AccessMonster.com | last post by:
I have a couple of lulus here but I'll address the other one in "Queries". This one pertains to allowing users with read-only access to use the database whilst a person with admin access is using...
5
by: nylyst | last post by:
I've run into a rather strange situation, and can't seem to find any details on why this would even be happening, so here goes: I've created an app to force users to update their pcAnywhere...
5
by: Dakrat | last post by:
Allow me to preface this post by saying that this is my first database project, and while I have learned a lot, any concepts I have learned are hit and miss as I have found new requirements and...
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: 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: 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
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,...

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.