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?

フレームでのページの定義

generated description: framediagram.gif

アプリケーションのレイアウトの全容は、Cinema.csp ページで定義されました。これは、上の図に青で示している 2 行で、1 列のフレーム・セットで構成されています。1 行目は、Search.csp ページを表示する Top という名前のフレームです。2 行目は、その他の (入れ子された) フレームです。

(緑で示している) 内側のフレーム・セットは 2 列で、1 行のフレームで構成されています。左側の列には、Order.csp ページを表示する、Order という名前のフレームが含まれます。もう 1 つの行には、TopPicks.csp ページを表示する Main という名前のフレームが含まれます。

—Cinema.csp—
Cinema.csp
<html>
<head>
<title>Cach&eacute; Cinema</title>
</head>

<frameset rows="100,1*" cols="*" frameborder="NO" framespacing="3">
    <frame src="Search.csp" name="Top" scrolling="NO" frameborder="NO">
    <frameset cols="285,1*" frameborder="NO" framespacing="3">
        <frame name="Order" src="Order.csp" frameborder="NO">
        <frame name="Main" src="TopPicks.csp" frameborder="NO">
    </frameset>
</frameset>
<noframes><body bgcolor="#FFFFFF">

</body></noframes>
</html>
FeedbackOpens in a new tab