search.jsp

来自「使用WebLogic Platform构建音乐站点」· JSP 代码 · 共 34 行

JSP
34
字号
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
<%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
<%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
<netui:html>
    <head>
        <title>
            Web Application Page
        </title>
    </head>
    <body>
        <p>Search song</p>
        <netui:form action="searchSong">
            <table>
                <tr valign="top">
                    <td>Title:</td>
                    <td>
                    <netui:textBox dataSource="{actionForm.title}" maxlength="50"/>
                    </td>
                </tr>
                <tr valign="top">
                    <td></td>
                    <td>
                    <netui:checkBox dataSource="{actionForm.exactly}"/>Exactly
                    </td>
                </tr>
            </table>
            <br/>&nbsp;
            <netui:button value="Search" type="submit"/>
            <netui:anchor href="../index.jsp">Index Page</netui:anchor>
        </netui:form>
    </body>
</netui:html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?