I have created a multiple page form and have chosen to use session variables. My problem is this:
I have created three functions and saved them as sessions; however, I must then average these three functions on a completely separate page. It is possible to save a function as a session and then compare it later on another page, or am I missing the boat completely.
First page with Functions looks like this:
function1()
newname1 = function1()
Session("newname1") = newname1
Then the page I pass to looks like this:
<%
Dim var1, var2, var3
Session("newname1") = var1
Session("newname2") = var2
Session("newname3") = var3
Then I have calculated the max function output with the new nonsession variables.
%>
Thanks in advance for any help! :)
Amy } ! {