-
Asp problem
Hi guys , i just started to learn asp , and i already have my first problem.
I made a simple post system , you can view it all at :
http://www33.brinkster.com/pierreke
the problem is situated ( i think ) in vervolg.asp
here 's the source :
<%@ language ="vbscript" %>
<%
SELECT CASE request.form("Cmdkeuze")
CASE "toevoegen"
response.redirect "http://www33.brinkster.com/pierreke/toevoegen.asp"
CASE "lezen"
response.redirect "http://www33.brinkster.com/pierreke/gastlezen.asp"
END SELECT
%>
can you help me out , normally he should go to the toevoegen.asp or the gastlezen.asp
-
Don't know for sure, but try placing your request.form into a variable, then evaluate the variable's value in your select...case statement.
-
-
I would put a case else statement in at the end that response.writes the value of the variable so you can see what is going wrong.