At the moment the code functionality where im using
<%=Session( "temp" )

%> within my ASP file works fine. So i thought if i do the same thing within my confirmation.htm file it would work. But no it doesnt.
I presume my problem comes from using <%=Session( "temp" )

%> as a type of local variable and therefore i cant use it from another file. correct? so what can i do.
heres the code and definitions:
The website is a belgium travel centre site. people order to travel by sea to another destination. they put in details etc and pay for it from the paysite (ogone).
The first page asks about the number of people going, amount of cars going, the date of the travel etc. then they press a button to continue. the next page is a confirmation page just to make sure what they entered previously is correct. behind the scenes, this asp file is creating the temps for each user details
<code>
DIM temp( 60 )
temp(0) = Request.Form("reizigersveld") 'people count going
temp(1) = Request.Form("voertuigenveld")'car count going
temp(2) = Request.Form("reisbestemming")'destination
temp(3) = Request.Form("kostprijs") 'cost in euros
temp(4) = bookdag & "/" & bookmaand & "/" & bookjaar
temp(5) = retourdag & "/" & retourmaand & "/" & retourjaar
temp(6) = vertrekdag & "/" & vertrekmaand & "/" & vertrekjaar
temp(8) = Request.Form("radiobutton")
temp(9) = Request.Form("checkbox")
temp(14)= Request.Form("touroperator")
etc...
</code>
the user then clicks a button to carry on. the next page asks about their personal details etc. Down the bottom of this page are the details mentioned earlier. using the
<%=Session( "temp" )

%> format to add in the user details.
<code>
<td><div align="right"><font size="2" face="Arial, Helvetica, sans-serif">Polisnummer :</font></div></td>
<td><div align="left"><font size="2" face="Arial, Helvetica, sans-serif"><%=Session( "temp" )(50)%></font></div></td>
</code>
in the case above <%=Session( "temp" )(50)%> is the policy number of the travel.
from here they are directed to the pay site and the email is sent.
the code at the moment in the confirmation.htm file relevant to my problem is:
<code>
...(other code)
<TD vAlign=middle noWrap align=left colSpan=9 rowSpan=3><FONT
face=Arial color=#000000 size=3><B>Email Confirmation of Polisnr :</B></FONT></TD>
<td><%=Session( "temp" )(50)%></td>
...(other code)
</code>
the above code is a small snippet of code that is similar to the rest of the htm file. basically it says "Confirmation of the Polisy Number:" then using the
<%Session( "temp" )(50)%> logic, it should place the policy number here...BUT IT DOESNT.
the confirmation page (the second page the user goes to) sets up the temp variables (as mentioned above) and the page following uses these variables. so i thought the htm file could do the same. is it because the confirmation attachment is a htm file? does it have to be an asp file?
im lost..completely
any help would be great
cheers foxbox