From: GTN1707 on
Hi All,

have been using cs3 for a while now, I often need to store a variable like an
email address as a session variable on a page insert (asp vbscript). Previously
in mx2004 i had found a useful technote
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15239&sliceId=2
which worked really well, the problem that I'm having is that the technote
tells you to look for the line "If (CStr(Request("MM_insert")) <>"") Then" and
then create the session by completeing the line with Session("EmployeeID") =
Request("txtEmployeeID") so that it reads like this --

If (CStr(Request("MM_insert")) <> "") Then Session("EmployeeID") =
Request("txtEmployeeID

Now CS3 doesn't write the insert statement like MX, so instead of "If
(CStr(Request("MM_insert")) <>"") Then" I have "If (CStr(Request("MM_insert"))
= "form1") Then"

My question is, how do i initiate the session variable I need to create now???

Appreciate your assistance