Kan ikke vise mit asp udtræk.
Jeg får denne fejlMicrosoft VBScript compilation error '800a03fb'
Expected 'Loop'
/test/visfil.asp, line 47
Jeg vil include denne fil til min default.asp side.
**** visgenk.asp ***
Denne asp skal lave et dataudtræk fra min DB.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"/>
<title>Vis Genralforsamling</title>
</head>
<body>
<table style="width: 100%">
<% Set Query = Conn.Execute(" SELECT TOP 1 * FROM general order by dato desc")
if Query.EOF then %>
<tr>
<td>Ingen Indkald pt.
<%end if%>
<% Do until Query.EOF %>
<% =Replace(Query("tekst"),vbcrlf,"<br>" & " ")%>
</td>
</tr>
<%Query.MoveNext%>
<% conn.close
Set Conn = Nothing %>
</table>
</body>
</html>
under dette udtræk har jeg 2 andre filer som includes i min default.asp side