Jag vill att anvädaren skall skickas till olika sidor beroende på vad som står i "Pass" Pröva med inStr. Se nedan. Antar att det är vad du är ute efter.Response.Redirect
finns det någon kod för ordet "innehåller " eller dylikt?
Skulle vilja att det såg ut typ så här.
<code>
If Request.Form("pass") innehåller? "n" then
Response.Redirect "norge/af_start.asp"
else
Response.Redirect "af_start.asp"
End If
</code>
Tack på förhand
ChristoferSv: Response.Redirect
Returns the position of the first occurrence of one string within another.
InStr([start, ]string1, string2[, compare])
Arguments
start
Optional. Numeric expression that sets the starting position for each search. If omitted, search begins at the first character position. If start contains Null, an error occurs. The start argument is required if compare is specified.
string1
Required. String expression being searched.
string2
Required. String expression searched for.
compare
Optional. Numeric value indicating the kind of comparison to use when evaluating substrings. See Settings section for values. If omitted, a binary comparison is performed.