在我的asp.net网站项目中,我运行/Functions/Profile/Pages/MySetting.aspx。
我的代码工作得很好,但是url变成了
http://localhost:51479/%28S%28xfqh4f0sufiuznzp1cyxir5s%29%29/Functions/Profile/Pages/MySetting.aspx
而不是
http://localhost:51479/Functions/Profile/Pages/MySetting.aspx。
我的项目出了什么问题?
谢谢!
发布于 2014-05-29 09:19:31
您正在使用cookieless会话。在web.config中更改这一行:
<sessionState mode="InProc" cookieless="true" timeout="3000"></sessionState>对此:
<sessionState mode="InProc" cookieless="false" timeout="3000"></sessionState>https://stackoverflow.com/questions/23929728
复制相似问题