I don't really understand sessions. Someone please help with the basic information regarding them. Thanks

Code:
<%
Dim strMydata
...
strMydata = "this is my data"
...
session("mydata") = strMydata
%>
...
<% session("mydata") %>
why won't this code write "this is my data" on my screen? it's blank.