Click here to Skip to main content
15,867,453 members
Please Sign up or sign in to vote.
1.67/5 (2 votes)
See more: , +
When i put below file in web config...it will showing unknown name in url

HTML
<sessionState
            mode="InProc"
            cookieless="true"
            timeout="30" />


www.example.com/(S(fkcy42h0yhqrb3g0f0y4j0r5))/pages..

unknown file = "(S(fkcy42h0yhqrb3g0f0y4j0r5))"


Plz help me..
Posted
Updated 25-Jun-14 23:09pm
v2

To solve your issue you should change the setting from your web.config like bellow:
HTML
<sessionstate mode="InProc" cookieless="false" timeout="30"/>
 
Share this answer
 
v2
Session id is stored in cookie. Which is passed with each request to server.
If cookieless session is used then sessionId is passed through url. Please chechk this link

http://msdn.microsoft.com/en-us/library/aa479314.aspx

First look for all effect of cookieless sesion and decide to use cookieless or cookie session. Some points are

1.If you are using cookieless session then state will be not maintained once browser closed.
2.Security threats
3. Mobile browser has very low limits of url length
http://www.beansoftware.com/ASP.NET-Tutorials/Cookieless-Session-State.aspx
 
Share this answer
 
v5

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