Hi, oppps i have actually done it i just did not want to paste all of that code but here it is
<html>
<title>Ocean Club Price List</title>
<head>
<LINK href="/data/active.css" rel=stylesheet>
</head>
<body>
<table cellpadding=0 cellspacing=0 bgcolor="#D6E4FC" width="500">
<tr><td bgcolor="#000099"><img src="ocean_title.gif"></td></tr>
</table>
<TABLE border=0 height="250" WIDTH="500" CELLPADDING=3 CELLSPACING=0 bgcolor="#D6E4FC" class="main_font">
<tr><td><b>Thursday Departures<br>(7, 10 or 14nts)</b></td>
<td><b>Sunday Departures<br>(7, 11 or 14nts)</b></td>
<td><b>4nts</b></td>
<td><b>7nts</b></td>
<td><b>10nts</b></td>
<td><b>11nts</b></td>
<td><b>14nts</b></td></tr>
<tr height='2'bgcolor="#000066"><td ></td><td ></td><td ></td><td </td><td></td><td></td><td& gt;</td></tr>
<%
Dim Conn, dbPath
dbPath = Server.MapPath("/htdocs/data/pricepannel.mdb")
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0; DATA SOURCE=" & dbPath
Set UserRecordset = Server.CreateObject("ADODB.Recordset")
sqlstring = "select * from OceanClub"
UserRecordset.Open sqlstring, conn
While NOT UserRecordset.EOF
objthur1 = UserRecordset("thursday1")
objsun1 = UserRecordset("Sunday1")
obj4n = UserRecordset("4nts")
obj7n = UserRecordset("7nts")
obj10n = UserRecordset("10nts")
obj11n = UserRecordset("11nts")
obj14n = UserRecordset("14nts")
Response.Write "<tr><td>" & objthur1 & "</td><td>" & objsun1 & "</td><td>" & obj4n & "</td><td>" & obj7n & "</td><td>" & obj10n & "</td><td>" & obj11n & "</td><td>" & obj14n & "</td></tr>"
Response.Write "<tr height='2'bgcolor='#000066'><td ></td><td ></td><td ></td><td </td><td></td><td></td><td& gt;</td></tr>"
UserRecordset.MoveNext
wend
UserRecordset.Close : Set UserRecordset=nothing
conn.close : Set conn=nothing
%>
</TABLE>
<p>
<table>
<tr><td class="main_font">
Prices are per person and include flights, all taxes, transfers, accommodation and daily breakfast. Based on two perople sharing a twin room.
<br>Supplement for single room £7 per night.
</td></tr>
</table>
</body>
</html>