本文介绍了需要会议一直活着!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们正在创建应用程序应用程序软件。我们在会议上有重大问题。我的应用程序在20分钟后自动会话过期。我试图使用meta标签来控制问题。但它刷新了页面。但我不需要刷新页面。请帮我。我尝试了很多想法。但没有改进。请指导我。

Hi, We are creating application application software. We have major issue in session. My application after 20 minutes automatically session expired. I have try to control the issue using meta tag. But it's refresh the page. But i don't need refresh the page. Please Help me. I have try lot of Ideas.But no improvement. please Guide me.

推荐答案

<sessionstate timeout="40" />



这里40表示40分钟。





2.在 Global.asax 文件的 Session_Start 方法中,您可以设置超时属性


here 40 means 40 minutes.

Or
2. In Session_Start method of Global.asax file, you can set the timeout property

Session.Timeout = "40";





更新:


如果你想要无限制的会话,你可以考虑使用cookie代替会话作为目的使用会话与你的requiremnet有点不同。

请关注这些有用的链接

[]

[ ]

[]



希望,它有帮助:)



If you want unlimited session then you may consider using cookies instead of session as the purpose of using session is bit different than your requiremnet.
Follow these useful links
unlimited session timeout?[^]
Keeping ASP.NET Session Open / Alive[^]
how to make login session unlimited?[^]

Hope, it helps :)


这篇关于需要会议一直活着!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 12:12