1

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 !

6
  • 1
    Have you set up the site to use cookieless sessions? Commented May 29, 2014 at 9:13
  • Where can I set-up this ? Can you show me some ? Commented May 29, 2014 at 9:14
  • In your web.config, what does the sessionState element look like? Commented May 29, 2014 at 9:15
  • 1
    Check this link how it gets configured. dailycoding.com/Posts/… Commented May 29, 2014 at 9:16
  • @DavidG , <sessionState mode="InProc" cookieless="true" timeout="3000"></sessionState> Commented May 29, 2014 at 9:18

1 Answer 1

3

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>
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.