I've had trouble with the following: I want to display a different number based on the value of a querystring.
Basically it's as follows
if Request("Registration_Type" = Consumer person Then str1 = 150
elseif Request("Registration_Type" = Teacher person Then str1 = 300
else str1 = 20
end if
thats basically the code i've tried (doesn't seem to work). In the above case I want the if then statements to execute if the value of "Registration_Type is equal to consumer person. Help!
Basically it's as follows
if Request("Registration_Type" = Consumer person Then str1 = 150
elseif Request("Registration_Type" = Teacher person Then str1 = 300
else str1 = 20
end if
thats basically the code i've tried (doesn't seem to work). In the above case I want the if then statements to execute if the value of "Registration_Type is equal to consumer person. Help!