<%
session("string") = "Hello World"
Response.Write "Session Variable: " & session("string")
dim strLocal
strLocal = session("string")
Response.Write "<BR>Local Variable: " & strLocal
dim strSQL
strSQL = "select * from table where column1 = '" & session("string") & "'"
Response.Write "<BR>SQL String: " & strSQL
%>