Skip to main content

The Search Form

Next, we add a form named “Search” to hold the drop-down lists used to enter search criteria. When the form is processed, the SearchResults.csp page will be displayed in the Main frame.

—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">
    </form>
    </td></tr>
</table>
<hr>
</body> </html>
FeedbackOpens in a new tab