viewlyric.jsp

来自「jsp版 音乐站点 j2ee+weblogic」· JSP 代码 · 共 25 行

JSP
25
字号
<%@ 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-data:declareControl controlId="ctrlMusicView" type="music.control.CallMusicView"></netui-data:declareControl></p>
<netui:html>
    <head>
        <title>
            View Lyric
        </title>
    </head>
    <body>
        <p>
            <netui-data:callControl method="getLyric" controlId="ctrlMusicView" resultId="lyric">
                <netui-data:methodParameter value="{url.id}" type="int" />
            </netui-data:callControl>
        </p>
        <p>
           Lyric:<br>
            <netui:label value="{pageContext.lyric}"/>
        <p>
    <netui:anchor href="../index.jsp">Index Page</netui:anchor>
    </body>
</netui:html>

⌨️ 快捷键说明

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