I am working with a legacy system and it has some IFs with many conditions, with the intention of improving the readability of the code I tried to break these conditions in several lines ..
If rs(0) = "Visualizar NF"
And Session("idPerfil") <> "19"
And Session("idPerfil") <> "10"
Then
The above excerpt generates the following error:
Erro de compilação do Microsoft VBScript erro '800a03f9'
'Then' esperado
I would like to know how in ASP 3.0 we can concatenate several conditions in decision structures or repetition loops?