Difference between revisions of "Example datanavigation rsp"

From Lianjapedia
Jump to: navigation, search
m
Line 1: Line 1:
 
==Name==
 
==Name==
example.rsp
+
example_datanavigation.rsp
  
 
==Description==
 
==Description==
Example Visual FoxPro Server Page (.rsp).
+
Example Visual FoxPro Server Page (.rsp) demonstrating basic data navigation.
  
 
==Code==
 
==Code==

Revision as of 08:17, 3 September 2013

Name

example_datanavigation.rsp

Description

Example Visual FoxPro Server Page (.rsp) demonstrating basic data navigation.

Code

<%@ Language=VFP %>
<html>
<body>
<%
    // Open the database
    open database southwind
    ? "<br>"
 
    // Open the table
    use customers
 
%>
<table>
<tr>
<%
     // Display the table headings
    for i = 1 to fcount()
        ? "<td>" + field(i) + "</td>"
    next
%>
</tr>
<%
    // Display the data in a table
    scan
        ? "<tr valign='top'>"
        for i = 1 to fcount()
            ? "<td>"
            ? &(field(i))
            ? "</td>"	
        next
        ? "</tr>"
    endscan
    // close the table and the database
    use
    close database
%>
</table>
</body>
</html>