6 messaggi dal 03 gennaio 2002
Ho un problemino!

ho una form con vari campi,
nel momento in cui faccio il submit dei dati i valori contenuti nei campi devono essere scritti in una tabella fatta in sqlserver...

il problema è che non mi scrive niente!
di seguito metto il cod che ho usato:

<%
dim dbrs
dim qry

Qry="SELECT * FROM IT_Calls;"
set dbrs = DbConn.execute(qry)


' vari campi
titolo= request("titolo")
nome= request("nome")
cognome= request("cognome")
...
if request("aggiungi") = "" then
aggiungi = "no"
end if
%>

<% if aggiungi = "no" then %>
<FORM ACTION="form.asp?aggiungi=si" METHOD="POST" NAME="frm" >

|||| codice html con i vari input text che si chiamano titolo, nome, cognome,....

<% else

'inserimento dei dati

DBRS.AddNew

dbrs("title") = titolo
dbrs("lastname")=cognome
dbrs("firstname")= nome
.....

DBRS.Update
DBRS.MoveLast

%>

<br><br><table>
<tr>
<td align="center">
<font face="Verdana" size="3" color="2D4A9E"><b>
Dati Correttamente inseriti
</b></font>
</td>
</tr>
</table>
<% end if
set dbrs= nothing
%>

grazie!

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.