Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Cookieless session, but session ID as a query string

Reply
Thread Tools

Cookieless session, but session ID as a query string

 
 
Hope Paka
Guest
Posts: n/a
 
      06-07-2005
Normally if you enable cookieless attribute in session element, in
web.config your url becomes like
http://domain.com/(SESSIONID)/Default.aspx

This is really good if you are not considering search engine spiders. Each
time they enter to your site, they got a different URL. This means that you
can never have a good page rank you your site.

I need to use session id like,
http://domain.com/Default.aspx?sessionId=(SESSIONID)
ASP was supporting this, but ASP.Net only supports in the way i have
explained.

What should i do for it?
Are there doc. about custom session implementation ?
Or any idea about this?


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to convert url with query string to url without query string nick Javascript 1 02-13-2011 11:20 PM
sessionState cookieless and forms cookieless ravisingh11@gmail.com ASP .Net 2 05-09-2006 11:26 PM
Cookieless Session ID in Query String Tom Cole ASP .Net 2 03-24-2006 09:01 PM
Cookieless Session Link, Cause of Session State Problem? fizbang@gmail.com ASP .Net 1 01-19-2006 03:53 PM
Session contents lost despite Session.Timeout = 3000; and <sessionState mode="InProc" cookieless="false" timeout="300"> Carpe Diem ASP .Net 3 02-23-2004 07:10 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57