3 messaggi dal 25 settembre 2003
Scusate la domanda scema..

if rs("Settembre") = "Test" then response.write "Ciao" else response.write "Ciao2"


Il seguente codice mi da esito positivo solo se la risposta è esattamente "Test" e non se per esempio è "Un Test".

Ho provato con i simboli % * ma non sembra funzionare..

Come posso fare?

Grazie.
11.886 messaggi dal 09 febbraio 2002
Contributi
usa Instr(). E' una funzione che ti trova sottostringhe in una stringa principale.

"Test" è una sottostringa di:
1) sè stessa
2) "Un test"
3) "Testare"
4) "intestazione"

in questi 4 casi Instr restituirà un valore maggiore di 0 (=sottostringa trovata)

if Instr(rs("Settembre"),"Test") > 0 then response.write "Ciao" else response.write "Ciao2"

Enjoy learning and just keep making
167 messaggi dal 19 marzo 2002
if Instr(rs("Settembre"), "Test") then
response.write "Ciao"
else
response.write "Ciao2"
end if

carpe diem, quam minimum credula postero
3 messaggi dal 25 settembre 2003
Funzia, grazie mille a tutti!

BrightSoul ha scritto:
usa Instr(). E' una funzione che ti trova sottostringhe in una stringa principale.

"Test" è una sottostringa di:
1) sè stessa
2) "Un test"
3) "Testare"
4) "intestazione"

in questi 4 casi Instr restituirà un valore maggiore di 0 (=sottostringa trovata)

if Instr(rs("Settembre"),"Test") > 0 then response.write "Ciao" else response.write "Ciao2"

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.