Also ich hab folgende Ausgangsseite: 

<% 'Dimension variables
Dim adoCon           'Holds the Database Connection Object 
Dim rsdownload   'Holds the recordset for the record to be deleted 
Dim strSQL            'Holds the SQL query to query the database 
Dim lngRecordNo     'Holds the record number to be deleted 
Dim loads

'Read in the record number to be deleted
lngRecordNo = Request.QueryString("ID")

'Create an ADO connection object
Set adoCon = Server.CreateObject("ADODB.Connection")

'Set an active connection to the Connection object using a DSN-less
connection
adoCon.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" &
Server.MapPath("db/download.mdb")

'Create an ADO recordset object
Set rsdownload = Server.CreateObject("ADODB.Recordset")

'Initialise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT tbldls.dls, tbldls.url FROM tbldls WHERE ID_no=" &
lngRecordNo

'Set the cursor type we are using so we can navigate through the recordset
rsdownload.CursorType = 2

'Set the lock type so that the record is locked by ADO when it is updated
rsdownload.LockType = 3


'Open the recordset with the SQL query 
rsdownload.Open strSQL, adoCon, , 1, 1

loads = rsdownload.Fields("dls")
loads = loads + 1
rsdownload.Fields("dls") = loads

rsdownload.update


Response.Redirect rsdownload("url")

'Reset server objects
rsdownload.Close
Set rsdownload = Nothing
Set adoCon = Nothing
%>

aber bei rsdownload.Fields("dls") = loads ist ein fehler. jetzt wei� ich
aber ned welcher. kann mir jemand helfen, so dann es funktioniert??? (bei jedem
aufrufen der seite zu dls 1 dazuz�hlen und dann den download starten). thx

-- 
GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net


| Oft Gefragtes: http://www.aspgerman.com/aspgerman/faq/
| [aspdebeginners] als [email protected] subscribed
| http://www.aspgerman.com/archiv/aspdebeginners/ = Listenarchiv
| Sie knnen sich unter folgender URL an- und abmelden:
| http://www.aspgerman.com/aspgerman/listen/anmelden/aspdebeginners.asp

Antwort per Email an