Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个单页网站(使用 c# 的 asp.net),当没有用户登录时显示一些网格数据。当用户按下登录时,弹出控件打开并且他们可以登录。登录时,该页面上提供了额外的功能。然后在一段时间不活动(即没有回发)后,我希望在该页面上自动禁用该功能,并显示一条消息,说明您已注销。
典型页面使用单独的登录页面,但这不是我想要的。以上可能吗?如何?
简单来说,如果未登录,您可以添加条件,显示登录字段,否则,显示页面内容。
您的“最简单”的路线是在您的页面中进行元刷新,重定向到注销页面,然后将您重定向回来。
将以下内容添加到页面头部:
<meta http-equiv="refresh" content="60; url=yourlogoutpage.aspx">
60 秒后,您将自动转到 yourlogoutpage.aspx,您将在此处终止会话,然后将它们重定向回此页面。