Value redirection (1 Viewer)

S

Ston

Guest
Hi everyone

I am very new to this
is it possiable to have a page directed to a different page
dependent of the value ie

if "A" is equal or greater than 100 go to page 1
or if "A" smaller than 100 go to page 2

any help would be much apprieciated

regards Ston
 
S

Ston

Guest
Hi all Ive found out how to do it

<%If {value} <=100 Then%>
HTML
<%Else%>
HTML
<%End If%>

more help needed
the value i want to use to replace {value} is {C} below
I have tried <%= (c) %> but this doesnt work if also tried
'"&c&"' but this doesnt work either below is how i am bringing the data to the page

<%
a = request("score1")
b = request("score2")
c = (a + b)
%>

would love some help

Ston
 

Users who are viewing this thread

Top Bottom