Hi, I don't really now anything about javascript and I have to translate the asp-script down here into it because our server doesn't accept asp due to security settings, could anyone help me out?
the searchform:
Code:
<head>
<title>ZoekForm</title>
</head>
<body>
<FORM NAME="zoekformulier" ACTION="redirecten.asp" METHOD="POST">
<p>zoek: <INPUT TYPE="text" NAME="zoekstring"></p>
<INPUT TYPE="submit" NAME="cmdZoek" VALUE="zoek">
</FORM>
</body>
</html>
the redirecten.asp script:
Code:
<%
dim strURL, strvariabele
strvariabele = request.form("zoekstring")
strURL="http://10.20.130.7/search.aspx?k=" & strvariabele
response.redirect "strURL" %>
thx in advance