fileupload.jsp

来自「webwork source」· JSP 代码 · 共 37 行

JSP
37
字号
<%@ taglib uri="webwork" prefix="webwork" %><%@ taglib uri="webwork" prefix="ui" %><link rel="stylesheet" type="text/css" href="../template/xhtml/styles.css" title="Style"><html><head><title>File Upload</title></head><body><h1>File Upload</h1><h3>Select a problem and submit patch. Max upload is 2 MB.</h3></br><webwork:if test="hasErrorMessages == true"><font color="red"></br>ERROR:</br><webwork:iterator value="errorMessages"><webwork:property/></font><br></webwork:iterator></webwork:if><form action="<webwork:url value="'fileupload.action'"/>" method="POST" enctype="multipart/form-data"><center><table width="350" border="0" cellpadding="3" cellspacing="0">   <ui:select label="'Severity'" name="'severity'" list="severityList"/>   <ui:textfield label="'Patch Description'" name="'description'" value="description"/>   <tr>      <td colspan="2"><input type="file" name="file" value="Browse..." size="50"/></td>   </tr>   <tr>      <td colspan="2" align="center"><input type="submit" value="Submit"></td>   </tr></table></center></form></body></html>

⌨️ 快捷键说明

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