Это моя первая страница ASP будет, хочу вывести колонку adres из таблицы klient расположенной c:\inetpub\wwwroot\sklad.mdb, ругается: Предполагается наличие окончания инструкции
/1.asp, line 23, column 28
strOut = strOut & "<TR><TH>"adres"</TH></TR>"
то есть на > где <TH>
Обычно я сижу в форуме http://bit.pirit.info/forum/index.php
но седня решил к вам, помогите братцы

[CODE]<% @ language = "vbscript"%>
<! Doctype Html Public "-//IETF/Dtd Html //EN">
<Html>

<Head>
<Meta Http-Eguiv = "Content-Type"
Content = "text/html; Charset = windows-1251">
<Title> ASP-Simplest_1 Example </Title>
Hi_s_1! <Br>

<%
Dim Conn, RS, strSQL, strOut
strOut = ""
Set Conn = Server.CreateObject("ADODB.Connection")
conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\inetpub\wwwroot\sklad.mdb"
Conn.Open "Data-Source-Name"

strSQL = "SELECT * FROM klient"
RS.Open strSQL, Conn
RS.MoveFirst
strOut = strOut & "<P>Here is the data:"
strOut = strOut & "<TABLE BORDER=""1"">"
strOut = strOut & "<TR><TH>"adres"</TH></TR>"
Do While Not RS.EOF
strOut = strOut & "<TR>"
strOut = strOut & "<TD>" & RS.Fields("adres") & "</TD>"
strOut = strOut & "</TR>"
RS.MoveNext
Loop
strOut = strOut & "</TABLE>"
strOut = strOut & "<HR>"
strOut = strOut & "That's it!"
RS.Close
Set RS = Nothing
Conn.Close
Set Conn = Nothing
Response.Write strOut
%>



</Html>