%@LANGUAGE = VBScript%> <% Dim sc, cn, rs sc = "driver={Microsoft Access Driver (*.mdb)};dbq=" Set cn = Server.CreateObject("ADODB.Connection") cn.Open sc & Server.MapPath ("/mdb-database/database/Buoni_Spesa_2015.mdb") Set rs = Server.CreateObject("ADODB.Recordset") Dim id id = Request.QueryString("id") %>
Specifica il Cognome e Nome
<% Else Dim SQL SQL = "SELECT * FROM autori WHERE aut_id = " & id rs.Open SQL, cn, 3, 3 rs("aut_nome") = nome rs.Update rs.Close %><% End If End If %>
<% Set rs = Nothing cn.Close Set cn = Nothing %>