by . .
Feedback
|
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days):
24972/
68
|
|
|
Step 4 : Basic Tabling |
Step 4: Basic Tabling
I'm going to create
a table as you'll see in this next one, with 1 column and then populate
it with data from Addresses (This code is outside ASP tags so be sure to
close them off).
<table border=1><tr><td><strong>Addresses</strong></td></tr>
<% While Not RecordSet1.EOF
Response.Write("<tr><td>")
%><%=(Recordset1.Fields.Item("Address").Value)%><%
Response.Write("</td></tr>")
RecordSet1.MoveNext
Wend %> </table>
|
See! Simple, we create
the table parameters and then whenever there is a record we stick a new
row in and shove the address in, close the row and move on to the next one.
|
|
|
User Comments
Title:
Real
Name:
Rizwan
Date:
2005-01-15 4:51:56 AM
Comment:
Great! What simple real way of teaching. Great Many thanks to Mr. Author!
|
|
Product Spotlight
|
|