Ciao a tutti, ho una pag con form x fare un update su db Access tipo:

codice:
 <form method="post" action="modifica_process.asp?cod=<%=cod%>">
     					Ragione Sociale<span style="color: #FF0000">*</span>

					<input name="ragione" type="text" style="width:400px" value="<%=oRst("ragione")%>">

					Nome
<input type="text" name="nome" style="width:400px" value="<%=oRst("nome")%>">
                    <input  name="submit" type="submit" value="sumbmit">
</form>
ed una la pagina modifica_process.asp
codice:
	cod= Request.Querystring("cod")
    ragione = Request("ragione")
 
'response.Write "ragione = " & ragione

	Set Conn = Server.CreateObject("ADODB.Connection")
	Conn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("/mdb-database/mos_abook.mdb")
Conn.Open strConn

sql = "SELECT * FROM abook WHERE id = " & cod
set rs = conn.execute(sql)
  if not rs.eof then
    conn.execute("UPDATE abook SET ragione = ragione & " & ragione & " WHERE id = "  & cod)
	'Conn.Execute("UPDATE abook SET ragione = '" & ragione & "'")
  else

  end if
Il problema è che nn vengono passate le varibili, e si aggiorna con un campo vuoto..

grazie a tutti!