Problemi a passare una session

di il
1 risposte

Problemi a passare una session

Ho bisogno di passare la variabile appoggio ad una session in modo che quando faccio un aggiornamento non perda la variabile il problema e che non riesco a passare il dato correttamente mi potete aiutare?


Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & server.mappath(".\dati\dati.mdb")
%>
<tr>
<td colspan="5">&nbsp;</td>
</tr>

<tr>
<th><font face="Verdana" size="2">TERZI</font></th>
<th><font face="Verdana" size="2">ID</font></th>
<th><font face="Verdana" size="2">Utente</font></th>
<th><font face="Verdana" size="2">totale</font></th>
<th><font face="Verdana" size="2">&nbsp;</font></th>
</tr>

<%
APPOGGIO1 =Request.QueryString("APPOGGIO1")

Set oRS = oConn.Execute("SELECT * FROM struttura where [Distr] like '%" & APPOGGIO1 & "%' ")

la fortuna aiuta la mente preparata

1 Risposte

  • Re: Problemi a passare una session

    Ciao se ho capito bene quello che ti serve dovresti fare:

    if session("APPOGGIO1") <> "" then
    APPOGGIO1 = session("APPOGGIO1")
    elseif Request.QueryString("APPOGGIO1") <> "" then
    APPOGGIO1 = Request.QueryString("APPOGGIO1")
    session("APPOGGIO1") = APPOGGIO1
    else
    'gestisci l'errore
    end if

    A volte basta un solo carattere sbagliato nel codice sorgente per mettere in crisi un' intera applicazione...
Devi accedere o registrarti per scrivere nel forum
1 risposte