my URL is messed up
-
Recently, I was programming and my url changed...it has RANDOM characters in it. I don't know how or why it occurred. Has any one see this? Normally, my url for a project would be http://localhost/MyProject/index.aspx Now, it looks like this http://localhost/MyProject/(bi4dw4bxvmy2l345vfuixouc)/index.aspx If I could remember what I had change in my project, I would change it back:< Will-B-Confused (help):(( Thanks for any suggestions in advance...
-
Recently, I was programming and my url changed...it has RANDOM characters in it. I don't know how or why it occurred. Has any one see this? Normally, my url for a project would be http://localhost/MyProject/index.aspx Now, it looks like this http://localhost/MyProject/(bi4dw4bxvmy2l345vfuixouc)/index.aspx If I could remember what I had change in my project, I would change it back:< Will-B-Confused (help):(( Thanks for any suggestions in advance...
It looks you have changed the web.config file to use cookieless sessions. The extra information is the SessionID. If you want to go back, go into your web.config file and look for sessionState. Change cookieless="true" to cookieless="false". That should get rid of the extra characters.
Happiness is knowing that somewhere out there, there is a bullet with your name on it.
-
It looks you have changed the web.config file to use cookieless sessions. The extra information is the SessionID. If you want to go back, go into your web.config file and look for sessionState. Change cookieless="true" to cookieless="false". That should get rid of the extra characters.
Happiness is knowing that somewhere out there, there is a bullet with your name on it.