Hvordan køre jeg min Query
Hej.Jeg har lavet en Query i ACCESS, som opdatere oplysningerne i den database som jeg henter mine oplysninger fra.
Og dette spørgsmål er idiotisk, men hvordan aktivere jeg den Query, fra ASP.
Min query hedder ITQuery
Så skal ITQueryen bare køres inden Tabelen åbnes.
Min nuværende kode ser således ud:
<%@ LANGUAGE="VBSCRIPT" %>
<%
Set LFOConn = Server.CreateObject("ADODB.Connection")
LFOConn.Open Application("Dataconnection")
SQL ="Select * from ITere order by TEAM"
Set RS_ITere = LFOconn.execute(SQL)
%>
<html>
<head>
<title>IT Specialister</title>
</head>
<body background="../../../bg3.gif" bgproperties="fixed">
<h1 align="center">IT-Specialister:</h1>
<p align="left"> </p>
<div align="center"><center>
<table width="550" height="20" border="1">
<tr>
<th width="50" height="20" align="center"><font face="Arial">Team</font></th>
<th width="150" height="20" align="left"><font face="Arial">Navn</font></th>
<th width="50" height="20" align="left"><font face="Arial">Init</font></th>
<th width="150" height="20" align="left"><font face="Arial">Foto</font></th>
<% DO WHILE NOT RS_ITere.EOF %>
</tr>
<% Init = RS_ITere("Initialer") %>
<tr>
<td width="40" height="20" align="center"><% =RS_ITere("TEAM") %>
</td>
<td width="200" height="20" align="left"><% =RS_ITere("NAVN") %>
</td>
<td width="40" height="20" align="left"><% =RS_ITere("Initialer") %>
</td>
<td><img src="../../Billeder/<%=Init %>2.jpg" alt="<%=Init %> har intet billede"></td>
</tr>
<% RS_ITere.movenext %>
<% loop %>
</table>
</center></div><%
rs_ITere.close
Set rs_ITere = Nothing
%>
</body>
</html>