Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

新規ページの開始

スタジオを使用して新規 CSP ページを作成することにより、新規 CSP ページ TopPicks.csp の作成を開始します。

  1. スタジオのメニュー・バーで、[ファイル]→[新規作成] をクリックします。

  2. 次に、[新規作成] ダイアログで [CSP ファイル] タブをクリックします。

  3. 最後に [Caché Server Page] アイコンをクリックし [OK] をクリックします。

次に HTML をページに追加します。スタジオで、ファイルを次のように編集します。

—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>

HTML はページ上に見出しとテーブルを作成します。csp/user にファイルを TopPicks.csp として保存します。

FeedbackOpens in a new tab