carol
04-22-2003, 12:09 PM
Hi i have a question that i hope some one can answer for me
I am making a page that access records from a mySql database. I can get all these records to display in a asp page but i am required to use a htm file type page
Does anyone know if this is possible and how to acheive this
The code i am using is :
The sql:
<% fldShowID = request.querystring("fldShowID")%>
<% dim sql
sql = " SELECT * FROM tblshowcase , TBLIMAGE , tblArticle "
sql = sql & " WHERE fldShowID = '" & fldShowID & "'"
sql = sql & " AND tblshowcase.fldArtID = tblArticle.fldArtID "
sql = sql & " AND TBLIMAGE.fldImgID = tblshowcase.fldImgID "
oC.open CS
oRS.open sql,CS
%>
The database field is fldShowDescription
<td height="149"><font face="Verdana, Arial, Helvetica, sans-serif"><strong>Description</strong></font><br><% = oRS("fldShowDescription")%></td>
In a htm page is just doesn't seem to see this information
Any advice would be greatly appreciated
I am making a page that access records from a mySql database. I can get all these records to display in a asp page but i am required to use a htm file type page
Does anyone know if this is possible and how to acheive this
The code i am using is :
The sql:
<% fldShowID = request.querystring("fldShowID")%>
<% dim sql
sql = " SELECT * FROM tblshowcase , TBLIMAGE , tblArticle "
sql = sql & " WHERE fldShowID = '" & fldShowID & "'"
sql = sql & " AND tblshowcase.fldArtID = tblArticle.fldArtID "
sql = sql & " AND TBLIMAGE.fldImgID = tblshowcase.fldImgID "
oC.open CS
oRS.open sql,CS
%>
The database field is fldShowDescription
<td height="149"><font face="Verdana, Arial, Helvetica, sans-serif"><strong>Description</strong></font><br><% = oRS("fldShowDescription")%></td>
In a htm page is just doesn't seem to see this information
Any advice would be greatly appreciated