Skip to main content

Starting a New Page

We begin building our new CSP page, TopPicks.csp by creating a new CSP page using Studio.

  1. On the Studio Menu bar, click File—>New

  2. Next, on the New dialog, click the CSP File tab.

  3. Finally, click the Caché Server Page icon and then click OK.

Next we add some HTML to the page. In Studio, edit the file so it looks like the following:

—TopPicks.csp—
TopPicks.csp

<html> 
<head> </head>
<body>
<h2><font color="#0000FF">Today's Top Picks</font></h2>
<table border=0>
 <tr>
    <td></td>
    <td></td>
 </tr>
</table>
</body>
</html>

The HTML creates a heading and a table on the page. Save the file as TopPicks.csp in csp/user.

FeedbackOpens in a new tab