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?

Category リストの追加 2

最後に、映画の年齢制限を選択する 2 つ目のドロップダウン・リストと、“Go!” ラベルのボタンを追加します。

—Search.csp—
Search.csp
<html> <head></head>
<body>
<table width="100%" border="0"> <tr>
    <td><img src="CacheCinemaLogo.gif"></td>
    <td align="right">
    <form name="Search" action="SearchResults.csp" target="Main" method="post">
        <b>Find</b>

        <select name="CategoryList" size="1">
            . . .
        </select>
        <b>movies rated</b>
        <select name="RatingList" size="1">
            <option value="*" selected>Any Rating</option>
            <option>G</option>
            <option>PG</option>
            <option>PG-13</option>
            <option>R</option>
        </select>

        <input type="submit" name="Submit" value="Go!">
    </form>
    </td> </tr>
</table>
<hr>
</body> </html>
FeedbackOpens in a new tab