Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When i am running my web application, url is getting changed, please help me how do i remove /%28S%28sm1sqbbjivlvt3fnt5zbzmfu%29%29/ from the below url.

http://localhost:55482/%28S%28sm1sqbbjivlvt3fnt5zbzmfu%29%29/Login.aspx


i want url in this way

http://localhost:55482/Login.aspx
Posted
Updated 20-Oct-15 19:58pm
v2
Comments
[no name] 21-Oct-15 3:35am    
try to browse with another browser
[no name] 21-Oct-15 5:11am    
Still same :(

You have cookieless sessions enabled somehow, disable them to get the url you want.
 
Share this answer
 
v2
You can disable cookie less session by adding below code in web.config file.
<sessionState mode="InProc" cookieless="UseCookies" timeout="15" />
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900