asp.net 开发服务器会话不工作
谁能帮我在 Visual Studio asp.net 开发服务器上工作时如何使用“会话”?因为我发现它在那里不起作用,但与 iis 一起
工作
Can anyone please help me how can I work with 'session' while working on visual studio asp.net development server please? as I found its not working there but working with iis
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
会话状态在 ASP.NET 开发服务器上运行良好。我目前正在开发几个 ASP.NET 应用程序,在开发过程中所有这些应用程序都托管在该 Web 服务器中。
请评论这些信息:
另外,请使用您的 webconfig 编辑您的问题(删除凭据,因此每个人都需要查看您的 ASP.NET 的配置方式,而不是您的敏感数据)。
让我们来看看。
Session state works great on ASP.NET development server. I'm currently developing a couple of ASP.NET apps and all of them are hosted in this web server during the development process.
Please comment these information:
Also, please edit your question with your webconfig (remove credentials and so, everyone needs to see how your ASP.NET is configured, but not your sensitive data).
Let's see.
如果 Session 在您的 Web 服务器上不起作用,那么您可以使用缓存代替 Session。我面临着同样的问题并且它有效。
If Session is not working on your web server then you can use cache instead of Session. I was facing the same problem and it worked.