<meta http-equiv="refresh" content="<%=SessionManager.TimeOut%>" />
我试过这个
SessionManager是一个静态类,TimeOut是设置为20
的类中的一个vlaible我期待
<meta http-equiv="refresh" content="20" />
要渲染,但
<meta http-equiv="refresh" content="<%=SessionManager.TimeOut%>" />
呈现
我在我的主文件中执行此操作
答案 0 :(得分:2)
从runat="server"
移除<head>
: - )
所以而不是:
<head runat="server">
<meta http-equiv="refresh" content="<%=SessionManager.TimeOut%>" />
...
</head>
只需使用:
<head>
<meta http-equiv="refresh" content="<%=SessionManager.TimeOut%>" />
...
</head>