Hej. select case Request.Querystring("kategori")Request.Querystring från a - f
Hur gör jag för att kolla ifall request.Querystring innehåller bokstav a-f ?
Ex:
If Request.Querystring("kategori") = "a-f" Then
gör detta
Else
If Request.Querystring("kategori") = "g-ö" Then
gör detta.
hoppas ni förstår.
Jag vill helst skippa göra 100 massa if satser.
Mvh HassanSv: Request.Querystring från a - f
case "a", "b", "c", "d" do this...
'och lite mer
case "e","f", "g", "h" do that...
case else go there...
end select