i m building website in asp.net
when i run my pages
i expect that my brower should display url like this
http://www.fixpic.com/uploo.aspx
but instead of this it displays
http://www.fixpic.com/(S(vqr0tz45005i2c450544ut45))/uploo.aspx
what could be the reasons behind it,,might be coz i m trying to make sessions but if that is the case than how can i remove these long characters from the url
This is because url is used to track session id instead of cookies. This setting is normally configured in web.config by the sessionState element. If you use
cookieless="true"it will use urls. Set it tofalseand cookies will be used.