📄 manage.jsp~8~
字号:
<%@ page contentType="text/html; charset=Big5" %>
<%@ page import="bookutil.BookTools" %>
<html>
<head>
<title>
manage
</title>
</head>
<body bgcolor="#ffffff">
<h1>
Manage
</h1>
<%
BookTools bt = new BookTools();
String name = bt.elicitCookie(request,"master").toString();
if(name == null || name.length() == 0){
out.println("<script>window.location=\"masterlogin.jsp\"</script>");
return;}
%>
<!--/////////////////// Delete Massage /////////////////////////-->
<hr align="left" width="60%">
Delete Massage >>
<form method="post" action="manage.beyondplus">
<br>
Please enter ID that you want to delete:<input type="text" name="id">
<br>(Split id with "," then you can delete more once ! )<br>
<input type="submit" name="smdelete" value="Submit">
<input type="reset" value="Reset">
</form>
<!--/////////////////// Reply Massage /////////////////////////-->
<hr align="left" width="60%">
Reply Massage >>
<form method="post" action="manage.beyondplus">
<br>
Please enter ID that you want to reply:<input type="text" name="id">
<br>
Please enter reply words:<textarea name="reply" style="width=200"></textarea>
<br><br>
<input type="submit" name="smreply" value="Submit">
<input type="reset" value="Reset">
</form>
<!--/////////////////// Modify Master /////////////////////////-->
<hr align="left" width="60%">
Reply Massage >>
<form method="post" action="manage.beyondplus">
<br>
Please modify your login name:<input type="text" name="master_name" maxlength="12" value="<%=name%>">
<br>
Please modify your login password:<input type="password" name="master_psw" maxlength="12" value="********">
<br><br>
<input type="submit" name="smmodify" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -