📄 flowertypefind.jsp
字号:
<%@ page contentType="text/html;charset=GBK"%>
<%
if(session.getAttribute("midentity")==null)
{
// request.setAttribute("result","您没有权力进入此页");
// getServletContext().getRequestDispatcher("display.jsp").forward(request,response);
response.sendRedirect("FlowerIndex.jsp");
}
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<title>untitled</title>
<link href="css/jdeveloper.css" rel="stylesheet" media="screen"/>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" width="578" align="left">
<tr>
<td>
<H1 align="center">花卉类别查询</H1>
<form action="flowertypeservlet" method="post">
<table cellspacing="0" cellpadding="0" border="1" width="60%" align="center">
<tr>
<td>
<FONT color="#ff9966">花卉类别编号:</FONT>
</td>
<td>
<input type="text" name="flowerid"/>
</td>
</tr>
<tr>
<td>
<FONT color="#ff9966">花卉类别名称:</FONT>
</td>
<td>
<input type="text" name="flowername"/>
</td>
</tr>
<tr>
<td>
<FONT color="#0033cc">系统提示:</FONT>
</td>
<td>
<%
String result="请注意系统提示";
if(request.getAttribute("result")!=null)
{
result=request.getAttribute("result").toString();
}
%>
<font color="red"><%=result%></font>
</td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" value="提交"/>
<input type="reset" value="重置"/>
<a href="ManagerMain.jsp">返回管理员主页</a>
<input type="hidden" name="action" value="find"/>
</td>
</tr>
</table>
</form>
<P align="center">
</P>
<P align="center"> </P>
<P> </P>
<P> </P>
<P> </P>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -