Click here to Skip to main content
15,904,934 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
When i m open my application in browser unessary text info is coming how to remove it.........
(like www.aplication name/(S(ak2j3wri0xzlyr45kpcp2f45))/pagename.

How to give short url path.
Posted
Comments
jim lahey 8-Nov-12 7:10am    
Is that your session Id?

1 solution

In your web config file cookieless attribute of sessionstate is set to true like this

C#
<sessionstate mode="InProc" timeout="20" cookieless="true" />


make it false or remove this attribute.
 
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