Error Type:
Microsoft VBScript compilation (0x800A0401)
Expected end of statement
/process.asp, line 102, column 34
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Page:
POST 700 bytes to /process.asp
POST Data:
NUMERO=NUMERO&NOME= . . .
codice:
ID=request.querystring("codice")
NUMERO = Request.Form("NUMERO")
response.write NUMERO
NOME = Request.Form("NOME")
If IsNull(NUMERO) or Len(CStr(NUMERO))=0 then
NUMERO = "NULL"
end if
If IsNull(NOME) or Len(CStr(NOME))=0 then
NOME = "NULL"
end if
SQL="UPDATE TABELLA set NUMERO="&NUMERO&", NOME='"&NOME&"' WHERE ID = "&ID
Conn.Execute(SQL)
Response.Redirect "ok.asp"