Phantom folder in path

  • Thread starter Thread starter tfs
  • Start date Start date
T

tfs

My program seems to be coming up with a phantom folder.

The folder doesn't show up until I do my login page from my forms
authentication web.config setup.

Before I get the login pages all my paths look correct. For example:

http://192.168.122.55/contour/VDW/default.asp

After I go the login page the same page looks like this:

http://192.168.122.55/contour/(0vsxtf55wzxyqn55c5fdcjnn)/vdw/default.asp

All my pages now have this extra folder (0vsxtf55wzxyqn55c5fdcjnn),
..

What would be causing this?

Thanks,

Tom
 
My program seems to be coming up with a phantom folder.

The folder doesn't show up until I do my login page from my forms
authentication web.config setup.

Before I get the login pages all my paths look correct. For example:

http://192.168.122.55/contour/VDW/default.asp

After I go the login page the same page looks like this:

http://192.168.122.55/contour/(0vsxtf55wzxyqn55c5fdcjnn)/vdw/default.asp

All my pages now have this extra folder (0vsxtf55wzxyqn55c5fdcjnn),
.

What would be causing this?

Thanks,

Tom



----------------------------------------------------------

----------------------------------------------------------
color]

The number is coming from cookieless sessions, which you must have turned
on. This is used to track sessions when cookies aren't to be used. Check
in your web.config, there's a flag (boolean) that turns this on/off.
 
Craig Deelsnyder said:
My program seems to be coming up with a phantom folder.

The folder doesn't show up until I do my login page from my forms
authentication web.config setup.

Before I get the login pages all my paths look correct. For example:

http://192.168.122.55/contour/VDW/default.asp

After I go the login page the same page looks like this:

http://192.168.122.55/contour/(0vsxtf55wzxyqn55c5fdcjnn)/vdw/default.asp

All my pages now have this extra folder (0vsxtf55wzxyqn55c5fdcjnn),
.

What would be causing this?

Thanks,

Tom



----------------------------------------------------------

----------------------------------------------------------
color]

The number is coming from cookieless sessions, which you must have turned
on. This is used to track sessions when cookies aren't to be used. Check
in your web.config, there's a flag (boolean) that turns this on/off.

That was it.

Thanks,

Tom
 
tfs said:
My program seems to be coming up with a phantom folder.

The folder doesn't show up until I do my login page from my forms
authentication web.config setup.

Before I get the login pages all my paths look correct. For example:

http://192.168.122.55/contour/VDW/default.asp

After I go the login page the same page looks like this:

http://192.168.122.55/contour/(0vsxtf55wzxyqn55c5fdcjnn)/vdw/default.asp

All my pages now have this extra folder (0vsxtf55wzxyqn55c5fdcjnn),
.

What would be causing this?

Cookieless session state.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top