"moondaddy" <moondaddy@nospam.com> wrote in message news:OcJeGOBLEHA.556@tk2msftngp13.phx.gbl...[color=blue]
> in the webconfig I set:
> <sessionState
> mode="InProc"
> stateConnectionString="tcpip=127.0.0.1:42424"
> sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
> cookieless="true"
> timeout="20"
> />
>
> and then in the browser address bar I get this:
>
>
http://localhost/CharmpixV2/(wexkf1y...qz)/test1.aspx
>
> Why is this and whats how do I get rid of it. I thought that if
> cookeiless=true then there would be no cookie, and when there is a cookie,
> its hidden. I must really be missing something here....
>
> Can someone set me straight?
>
> --
>
moondaddy@nospam.com
>
>[/color]
if you specify 'mode="off" ', then you will be rid of both cookies and
the ugly url. Of course, you won't have any sessions then, but this might
be just what you want?
For sessions to work you need some sort of session-identifier, either
by cookie or by url.
Hans Kesting