Prevent session id from appearing in browser address bar in asp.net -
i have asp.net application uses cookieless session. pages displays session id part of uri. change this. application built asp.net 1.1 , has been converted asp.net 4.0 conversion wizard.
i added sessionstate tag under system.web in order enforce "cookieless=false". change has no effect. can tell me should looking?
many in advance
bm
change cookieless "usecookies" have session stored inside cookie. otherwise session embedded url.
here's more information msdn site
if have set cookieless false in web.config file , still showing sessionid in url, means browser has cookies disabled. check browser setting , enable browser accept cookies.
there no way hide sessionid if cookies disabled browser. there work around here:
hide session id in url
Comments
Post a Comment