Hej! Dim antalKolla att ett fält är ett nummer.
Jag undrar hur man kollar att ett fält innehåller nummer mellan 1-99 och inte bokstäver eller nåt annat. I sidan som tar i emot posten vill jag göra en redirect om det är fel.
ex. <% If Request("Antal") inte är ett nummer mellan 1-99 Then Response.Redirect "kop_fel.asp" End If %>
Tack på förhand!Sv: Kolla att ett fält är ett nummer.
antal = Request("Antal")
If Not IsNumeric(antal) Or antal < 1 Or antal > 99 Then
Response.Redirect "kop_fel.asp"
End If