Nessun risultato. Prova con un altro termine.
Guide
Notizie
Software
Tutorial

Leggere un cookie come array

Ora sfrutteremo la proprietà multi-chiave dei cookie ed andremo a leggere i valori contenuti in un cookie specifico come se si trattasse di un array.

<%
dim ctInd
dim strValore

for ctInd = 0 to 10
strValore = request.cookies("my_cookies")("indice"&ctInd)
response.write "Indice -> "&ctInd&" - Valore : "&strValore&" <br>"
next
%>

Ora sfrutteremo la proprietà multi-chiave dei cookie ed andremo a leggere i valori contenuti in un cookie specifico come se si trattasse di un array.

<%
dim ctInd
dim strValore

for ctInd = 0 to 10
strValore = request.cookies("my_cookies")("indice"&ctInd)
response.write "Indice -> "&ctInd&" - Valore : "&strValore&" <br>"
next
%>

Link copiato negli appunti

Ora sfrutteremo la proprietà multi-chiave dei cookie ed andremo a leggere i valori contenuti in un cookie specifico come se si trattasse di un array.

<%

dim ctInd

dim strValore

for ctInd = 0 to 10

strValore = request.cookies("my_cookies")("indice"&ctInd)

response.write "Indice -> "&ctInd&" - Valore : "&strValore&" <br>"

next

%>