📄 note_read.jsp
字号:
<%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GB18030" import="java.sql.*"%>
<%@ include file="config.ini"%>
<%@ include file="conn.jsp"%>
<%@ include file="readlogin.jsp"%>
<%
String id=request.getParameter("id");
if(id==null)
{
out.print("<script>");
out.print("alert('id错误!');");
out.print("location.href='note.jsp';");
out.print("</script>");
}
try
{
sqlstr="select * from note1 where id="+id;
rs=iCanDb.doSelect(sqlstr);
if(rs.next())
{
String title=rs.getString("title");
String content=rs.getString("content");
content=turn(content);
Date datetemp1=rs.getDate("date");
java.text.SimpleDateFormat datetemp2=new java.text.SimpleDateFormat("yyyy-MM-dd");
String date=datetemp2.format(datetemp1);
%>
<html>
<head>
<%@ include file="head.jsp"%>
</head>
<body>
<center>
<table border="0" width="768" id="table1" cellspacing="0" cellpadding="0">
<tr>
<%@ include file="top.jsp"%>
</tr>
<tr>
<td width="90" valign="top">
<%@ include file="menu.jsp"%> </td>
<td width="588" valign="top">
<table border="0" width="100%" id="table3" cellspacing="0" cellpadding="0">
<tr>
<td>
<table border="1" width="100%" id="table4" bordercolorlight="#0A9EE4" cellspacing="0" cellpadding="5" bordercolordark="#0A9EE4" height=300>
<tr>
<td valign="top">
<table border="0" width="100%" id="table5" cellspacing="0" cellpadding="0">
<tr>
<td>
<table border="0" width="100%" id="table6" cellspacing="0" cellpadding="0">
<tr>
<td valign="bottom" width="50%">
</td>
<td width="50%">
<img src="images/n-note.jpg" align="right" width="230" height="70"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><hr noshade color="#0A9EE4" size="1"></td>
</tr>
<tr>
<td height="20"><form method="POST" action="list_add.jsp?action=save" target=_top name="form1" onsubmit="return on_submit()">
<table border="0" width="574" id="table7" cellspacing="0" cellpadding="5">
<tr>
<td width="554" height="22" align="right">
<p align="center"><font color="#0A9EE4">
<b><span style="font-size: 12pt"><%=title%></span></b></font></td>
</tr>
<tr>
<td width="554" height="22" align="center">
<table border="0" width="450" id="table8" cellspacing="0" cellpadding="0">
<tr>
<td> <p align="left">
<span style="font-size: 9pt"><%=content%></span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="554" height="22" align="right">
<font color="#0A9EE4">
<span style="font-size: 9pt; font-weight: 700">
[ <%=date%> ]</span></font></td>
</tr>
</table></form>
</td>
</tr>
<tr>
<td>
<p align="center"><span style="font-size: 9pt">
<font color="#0A9EE4">[ </font>
<a target="_top" href="note.jsp">
<font color="#0A9EE4">返回</font></a><font color="#0A9EE4">
]</font></span></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width="90"> </td>
</tr>
<tr>
<td width="90" valign="top">
</td>
<td width="588" valign="top">
<%@ include file="copyright.jsp"%>
</td>
<td width="90"> </td>
</tr>
</table>
<p>
</center>
</p>
</body>
</html>
<%
}
else
{
out.print("<script>");
out.print("alert('id错误!');");
out.print("location.href='list.jsp';");
out.print("</script>");
}
}
catch(Exception e)
{
out.print("<script>");
out.print("alert('数据库错误!');");
out.print("location.href='list.jsp';");
out.print("</script>");
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -