|
|
|
|
|
| | |
|
Active Server Pages ASP ASP.NET .aspx .ascx Web HTML Developer Internet Microsoft Web Services Visual Studio .NET CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: Updating MS-ACCESS database record |
From: |
Stephan Brun |
Date: |
12/23/1999 7:53:54 AM |
IP: |
194.235.48.10 |
make a sql-statement to get the recordset you want to update, then:
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open "sql", "dsn", AdOpenKeyset, adLockPessimistic, adCmdTable
rs.Fields("Ereignis")= Request.Form("Ereignis")
rs.Update
rs.Close
Set rs = Nothing
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|