如何在经典 asp 中使用会话将值传递给 html?

How to use session in classic asp for passing value to html?

我是经典 asp 的新手,在我的页眉中,需要使用会话传递变量。

我的会话名称是,session("falias")=""

这是我的 html,

    <li class="user" >

<span class="res" >Michael</span></li>

我需要显示任何其他名字而不是这个名字 Michael,那么如何使用会话呢。

我连代码怎么写都不会,请帮帮我?

<%=Session("falias")%>

<% Response.Write Session("falias") %>
<span class="res" ><%=session("falias") %></span></li>