📄 info_upload.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" %>
<%@include file="InfoComm.jsp"%>
<% // 取得当前用户名
String userId = (String)session.getValue("user_id");
String pwd = (String)session.getValue("passwd");
// 只有系统用户才可以有权限
if(IsUser(userId,pwd))
{
%>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="../style.css"></head>
<body bgcolor="#FFFCD9" leftmargin="0" topmargin="0">
<form name="form1" method="post" action="info_upfile.jsp" ENCTYPE="multipart/form-data">
<table width="100%" border="0" cellspacing="0" bordercolordark="#CCCCCC" bordercolorlight="#000000">
<tr>
<td width="100%">
<input type="file" name="file1" style="width:88%" value=""> <input type="submit" name="Submit" value="提 交"></td>
</tr>
</table>
</form>
</body>
</html>
<%}
else
out.println("你没有添加的权限");
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -