Summary :
|
Views :
0
Published :
Monday, January 12, 2004
By
HyperLink
|
Im retrieving data from another server by SQL and now I want to limit the number of titles that will appear on the page. here is my orrigal coding to retrive the data:
<%
sqlString = "select * from golf_news group by date desc"
set rs = con.execute (sqlstring)
%>
<%
while not rs.eof
%>
<table width="426" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="img/event.gif" width="10
|