Difference between revisions of "Example datanavigation rsp"

From Lianjapedia
Jump to: navigation, search
Line 1: Line 1:
 +
{{DISPLAYTITLE:Lianja Server Page Example}
 
==Name==
 
==Name==
 
example_datanavigation.rsp
 
example_datanavigation.rsp

Revision as of 23:06, 7 April 2019

{{DISPLAYTITLE:Lianja Server Page Example}

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>