📄 session1.aspx
字号:
<%@ Page Language="VB" Debug="true" EnableSessionState=true %>
<html>
<script language="VB" runat="server">
Function GetStyle(Key As String) As String
Return Session(Key).ToString()
End Function
</script>
<style>
body {
font: <%=GetStyle("FontSize")%> <%=GetStyle("FontName")%>;
background-color: <%=GetStyle("BackColor")%>;
}
a { color: <%=GetStyle("LinkColor")%> }
</style>
<body style="color:<%=GetStyle("ForeColor")%>">
<h3><font face="宋体">将易失数据存储在会话状态中</font></h3>
<b><a href="customize.aspx">自定义此页</a></b><p>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
设想这里有某些内容 ...<br>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -