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

cookieless=true option and the ways to transfer session id

Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the following:
https://www.anseladams.com/billinfo....V&SID=1&SGID=1
I don't want the force cookies on the web site.
Thanks

Nov 18 '05 #1
3 859
What do you means by "as a parameter" ?

In cookieless mode, it is transferred as part of the querystring.

Patrice
"R.A." <te**@citsecure.com> a écrit dans le message de
news:eY**************@TK2MSFTNGP12.phx.gbl...
Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the following: https://www.anseladams.com/billinfo....V&SID=1&SGID=1 I don't want the force cookies on the web site.
Thanks

Nov 18 '05 #2
yes but I see it as
http:http://www.myweb.com/(gnqwctqw45jnwn...)/Default.aspx
I want it to look like this:
https://www.anseladams.com/billinfo....V&SID=1&SGID=1
Thanks

"Patrice" <no****@nowhere.com> wrote in message
news:uo**************@TK2MSFTNGP10.phx.gbl...
What do you means by "as a parameter" ?

In cookieless mode, it is transferred as part of the querystring.

Patrice
"R.A." <te**@citsecure.com> a écrit dans le message de
news:eY**************@TK2MSFTNGP12.phx.gbl...
Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the following:

https://www.anseladams.com/billinfo....V&SID=1&SGID=1
I don't want the force cookies on the web site.
Thanks


"Patrice" <no****@nowhere.com> wrote in message
news:uo**************@TK2MSFTNGP10.phx.gbl... What do you means by "as a parameter" ?

In cookieless mode, it is transferred as part of the querystring.

Patrice
"R.A." <te**@citsecure.com> a écrit dans le message de
news:eY**************@TK2MSFTNGP12.phx.gbl...
Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the

following:

https://www.anseladams.com/billinfo....V&SID=1&SGID=1
I don't want the force cookies on the web site.
Thanks


Nov 18 '05 #3
Sorry,

I gave this a try. I'm almost sure I gave this a try and it was on the
QueryString (ASP.NET 1.0 vs ASP.NET 1.1 maybe ?)

I see nothing obvious in the configuration schema that would allow to change
this. What exactly is the problem ? Anyway, it shouldn't affect the app in
any other way. Still use the SessionID property, if you need this value.

Patrice

"R.A." <te**@citsecure.com> a écrit dans le message de
news:%2****************@TK2MSFTNGP12.phx.gbl...
yes but I see it as
http:http://www.myweb.com/(gnqwctqw45jnwn...)/Default.aspx
I want it to look like this:
https://www.anseladams.com/billinfo....V&SID=1&SGID=1

Thanks

"Patrice" <no****@nowhere.com> wrote in message
news:uo**************@TK2MSFTNGP10.phx.gbl...
What do you means by "as a parameter" ?

In cookieless mode, it is transferred as part of the querystring.

Patrice
"R.A." <te**@citsecure.com> a écrit dans le message de
news:eY**************@TK2MSFTNGP12.phx.gbl...
Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the

following:

https://www.anseladams.com/billinfo....V&SID=1&SGID=1
I don't want the force cookies on the web site.
Thanks


"Patrice" <no****@nowhere.com> wrote in message
news:uo**************@TK2MSFTNGP10.phx.gbl...
What do you means by "as a parameter" ?

In cookieless mode, it is transferred as part of the querystring.

Patrice
"R.A." <te**@citsecure.com> a écrit dans le message de
news:eY**************@TK2MSFTNGP12.phx.gbl...
Hi,

Is there a way to have asp.net transfer the session id in the url as a
paramenter and not as part of the web address? something like the

following:

https://www.anseladams.com/billinfo....V&SID=1&SGID=1
I don't want the force cookies on the web site.
Thanks



Nov 18 '05 #4

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

Similar topics

0
by: Nikander Bruggeman | last post by:
Hi, In a situation where I have 2 servers which are load balanced I keep losing session state, although I store the session state in sql server and use a cookieless session, so that the session...
3
by: Scott | last post by:
Hello, we are having problems displaying non-aspx files (images, style sheets) since we have upgraded to the 1.1 framework when using a cookieless session (sessionID in the url). Check out...
5
by: Grant | last post by:
Can anyone explained to me how the session state - cookieless = true work? Where is the information stored in the URL? I am concern hat some one can use that to the advantage (hacker). I have...
2
by: alex | last post by:
when i bookmark a page in my app with a session id in the path, that session id doesn't get reset. It survives timeouts, browser and server restarts. I'm seeing this behaviour whether I use InProc...
4
by: Bernie Raffe | last post by:
When I change the 'cookieless' flag in the WebConfig file to true, everything works fine on my local PC, but the images fail to appear when using the remote server. I specify my images...
0
by: Toro | last post by:
Hi, I have found some information about a potential security flaw in cookieless session management. I am sure that the issue is well known to the community because it was reported over 2 years...
4
by: Paul W | last post by:
Hi - I don't want to rely on my users having cookies enabled. If I use Cookieless=True it of course mangles the urls which means there is no browser caching of the pages, so it is slow. ...
0
by: vickeybird | last post by:
Hi, My current application requires me to use HTTPS and Cookieless Sessions. Ive just implemented HHTP Handler to redirect all http request to https as described by Matt Sollars at...
0
by: Jayesh | last post by:
Hi, I am having a problem with exporting crystal report in .Net application.The export is running fine if cookieless='false' is set in web.config file on server.As soon as the cookieless='true' is...
1
by: MPF | last post by:
Thanks in advance for any info. If the cookieless=true is turned on, the sessions are stored in the database. If cookieless=false, then no attempt to use the database is made. I verified this by...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: 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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.