Reputation: 6103
In my asp.net Website project , I run /Functions/Profile/Pages/MySetting.aspx
.
My code works perfectly but the url become
http://localhost:51479/%28S%28xfqh4f0sufiuznzp1cyxir5s%29%29/Functions/Profile/Pages/MySetting.aspx
instead of
http://localhost:51479/Functions/Profile/Pages/MySetting.aspx
.
What wrong in my project ?
Thanks !
Upvotes: 1
Views: 88
Reputation: 118977
You are using cookieless
sessions. Change this line in your web.config:
<sessionState mode="InProc" cookieless="true" timeout="3000"></sessionState>
to this:
<sessionState mode="InProc" cookieless="false" timeout="3000"></sessionState>
Upvotes: 3