home *** CD-ROM | disk | FTP | other *** search
/ sau9.org / sau9.org.zip / sau9.org / mathapp / test.asp < prev    next >
Text File  |  2002-11-20  |  313b  |  15 lines

  1. <%@ Language=VBScript %>
  2.  
  3. <%
  4.  
  5.  
  6. filePath = Server.MapPath("math_proj.mdb")
  7. Set conn = Server.CreateObject("ADODB.Connection")
  8.  
  9. conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & filePath
  10.  
  11. sql_update2= "INSERT into tblperformance (idStudent) Values (76554321)"
  12.  
  13.  
  14. conn.Execute (sql_update2)
  15. %>