📄 actionlog.jsp
字号:
<%@ page session="true" buffer="none" contentType="text/html; charset=GB2312" import="java.sql.*,java.util.*,java.lang.*,net.xerllent.campus.util.*,net.xerllent.campus.database.*,net.xerllent.campus.sysadmin.*" %>
<%
security.checkAuth(session,"Id",response,request);
%>
<html>
<head>
<title>校园.NET</title>
<!--显示该用户所作的操作! -->
<meta http-equiv="Content-Type" content="text/html; charset=gb2312; no-cache">
<meta http-equiv="Expires" content="Mon,04 Dec 1980 11:11:11 GMT">
<link rel="stylesheet" href="../../images/campus.css" type="text/css">
</head>
<body bgcolor="#D6D3CE" text="#000000" leftmargin="0" topmargin="0" marginwidth="0">
<br>
<table width="90%" border="0" cellspacing="0" cellpadding="0" align="center" class="gl_mainBar" height="25">
<tr>
<td align="center" nowrap><b>用户所执行的操作</b></td>
</tr>
</table>
<table width="90%" border="0" cellspacing="0" cellpadding="10" align="center" class="gl_tdbox">
<tr>
<td align="center">
<textarea name="textactionlog" style="width:210" class="input1" rows="20">
<%
//查询该用户所作的操作,并显示出来!
Connection conn=DbConnectionManager.getConnection();
Statement sta=conn.createStatement();
ResultSet res=sta.executeQuery("select Action from act_systemlog where SystemLogID='"+ParamUtils.getParameter(request,"logid")+"'");
while(res.next())
{
out.print(res.getString("Action"));
}
res.close();
sta.close();
conn.close();
%></textarea>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -