Salve a tutti,

ho letto in giro su internet un tutorial su come creare un carrello in asp e ajax, funziona tutto a meraviglia, solo che avrei la necessità di recuperare il prezzo e il nome del prodotto da questo script:

codice:
<%
    Response.Buffer = True
    Response.Expires = 0

    Dim act, id, qta
    act = Request.QueryString("act")
    id = Request.QueryString("id")
    qta = Request.QueryString("qta")
    prezzo = Request.QueryString("prezzo")
    nome_prod = Request.QueryString("nome_prod")

    If act = "ADD" Then
        If Session("prodotto_" & id) = "" Then
            Session("prodotto_" & id) = qta
        Else
            Session("prodotto_" & id) = CLng(Session("prodotto_" & id)) + CLng(qta)
        End If
    End If

    If act = "DEL" Then
        Session.Contents.Remove("prodotto_" & id)
    End If

    If act = "EMP" Then
        Session.Contents.RemoveAll()
    End If

    If Session.Contents.Count = 0 Then
%>



Nessun ordine!</p>

<%
    Else
        Dim item
        For Each item In Session.Contents
%>




Prodotto <%=Replace(item, "prodotto_", "")%>
(<%=Session(item)%>)
, 0)">Cancella
</p>

<%
        Next
%>



Svuota Carrello</p>

<%
    End If
%>
I dati alla pagina li passo correttamente, ma non so come impostare il ciclo per stamparli...potreste darmi una mano?

Grazie