browsefile.jsp

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

JSP
21
字号
<%@ 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>
            Upload
        </title>
    </head>
    <body>
        <p>Select a file and upload(<font color="red">Max size: 10M</font>) :</p>
        <netui:form action="uploadFile" enctype="multipart/form-data">
            <netui:fileUpload tagId="inputbox" dataSource="{actionForm.theFile}"/>
            <br/>
            <netui:button value="Upload File" action="uploadFile"/>
            <netui:anchor href="../index.jsp">Index Page</netui:anchor>
        </netui:form>
    </body>
</netui:html>

⌨️ 快捷键说明

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