uploaddisplay.jsp

来自「基于Maven的质量保证自动化环境配置和演示程序」· JSP 代码 · 共 48 行

JSP
48
字号
<%@ include file="/common/taglibs.jsp"%><head>    <title><fmt:message key="display.title"/></title>    <meta name="heading" content="<fmt:message key='display.heading'/>"/>    <meta name="menu" content="AdminMenu"/></head><p>Below is a list of attributes that were gathered in FileUploadController.java.</p><div class="separator"></div><table class="detail" cellpadding="5">    <tr>        <th>Friendly Name:</th>        <td><c:out value="${friendlyName}"/></td>    </tr>    <tr>        <th>Filename:</th>        <td><c:out value="${fileName}"/></td>    </tr>    <tr>        <th>File content type:</th>        <td><c:out value="${contentType}"/></td>    </tr>    <tr>        <th>File size:</th>        <td><c:out value="${size}"/></td>    </tr>    <tr>        <th class="tallCell">File Location:</th>        <td>The file has been written to: <br />            <a href="<c:out value="${link}"/>"><c:out value="${location}" escapeXml="false"/></a>        </td>    </tr>    <tr>        <td></td>        <td class="buttonBar">            <input type="button" name="done" id="done" value="Done"                onclick="location.href='mainMenu.html'" />            <input type="button" style="width: 120px" value="Upload Another"                onclick="location.href='fileupload.html'" />        </td>    </tr></table>

⌨️ 快捷键说明

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