Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I wrote out different characters in the url ASP.NET project, I wonder what could be the reason for this?

http://domain/(S (d1zfezo1knkqpsbwou3ll4i0))/Default.aspx out. Project. NET 4.0 was written.
Posted
Comments
Manas Bhardwaj 17-Feb-11 11:27am    
If you wrote it, you should tell us ;)
Henry Minute 17-Feb-11 11:30am    
I think you need to try to reword your question for folks to understand what you mean.
AhmetBascetin 17-Feb-11 11:33am    
I wrote to debug the project while at the url string is as follows.

http://domain/(S (d1zfezo1knkqpsbwou3ll4i0))/Default.aspx
AhmetBascetin 17-Feb-11 11:34am    
(S(d1zfezo1knkqpsbwou3ll4i0))
that the characters are trying to find how it came about. I wonder what could be reason?

1 solution

It is your session information.
in your web config file you have something like this:
<sessionState mode="InProc" cookieless="UseUri" timeout="60">

or
<sessionState mode="InProc" cookieless="AutoDetect" timeout="60">


(the important part for your question is cookieless part)

if you do not want that just change this part cookieless="UseUri" to something like cookieless="UseCookies"

Note that by doing this, your clients should accept cookies.

also take a look at this one:

http://msdn.microsoft.com/en-us/library/aa479315.aspx[^]

hope this can help.
 
Share this answer
 
v3
Comments
thatraja 17-Feb-11 12:26pm    
Good answer...5!
Sreejith Gopinathan 17-Feb-11 14:23pm    
+5...
AhmetBascetin 17-Feb-11 18:12pm    
Thank you very much for your answer. You would have one more question. Our session this setting, the browser creates a problem because of powers in us?
aidin Tajadod 8-Mar-11 11:57am    
Sorry Ahmet, I did not understand your question. Could you please describe more?

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