Ik heb deze database gemaakt, hierin wil ik gewoon gaan bladeren, maar hij zegt
[ERROR]
ADODB.Recordset error '800a0c93'
The operation requested by the application is not allowed in this context.
[/ERROR]
als ik een movelast, of een moveprevious gebruik, iemand een idee waarom, de cursortype staat goed volgens mij, tenminste zo heb ik het opgezocht. (Alle andere cursortypes geven dezelfde fout)
[ERROR]
ADODB.Recordset error '800a0c93'
The operation requested by the application is not allowed in this context.
[/ERROR]
als ik een movelast, of een moveprevious gebruik, iemand een idee waarom, de cursortype staat goed volgens mij, tenminste zo heb ik het opgezocht. (Alle andere cursortypes geven dezelfde fout)
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
| <%
no=Request.Form("NWinternummer")
Dim conn, rs
Set rs = Server.CreateObject("ADODB.RecordSet")
Set conn = Server.CreateObject("ADODB.Connection")
conn.Provider = "Microsoft.Jet.OLEDB.4.0"
conn.Open(("D:\Inetpub\wwwroot\sis\sis.mdb"))
rs.Open "SELECT * FROM aspnetwerk", conn , adOpenKeyset
rs.movefirst
dim nav
nav= request.querystring("move")
Select case nav
Case "first"
rs.movefirst
Case "back"
rs.moveprevious
Case "next"
rs.movenext
Case "last"
rs.movelast
Case "new"
response.write "BLA."
End Select
%>
<HTML>
<BODY BGCOLOR = #000000 text = #FFFF00>
<form method="post" action="db_submit.asp">
<TABLE align = "right" border = 0 bgcolor="#000000" cellpadding="2">
<TD><input type="submit" name="action" value="Save Update"></TD>
<TD><input type="submit" name="action" value="Delete"></TD>
<TD><input type="submit" name="action" value="Save Nieuw"></TD>
</TR>
</TABLE>
<P> </P>
<TABLE align = "center" border = 0 bgcolor="#000000" cellpadding="2">
<TR>
<TD><a Href="?move=first" ><IMG SRC = "images/begin.gif"></a></TD>
<TD><a Href="?move=back" ><IMG SRC = "images/terug.gif"></a></TD>
<TD><a Href="?move=next" ><IMG SRC = "images/voren.gif"></a></TD>
<TD><a Href="?move=last" ><IMG SRC = "images/eind.gif"></a></TD>
<TD><a Href="?move=new" ><IMG SRC = "images/plus.gif"></a></TD>
</TR>
</TABLE> |
Bikkelen gebeurt pas na 2:00