站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题Oracle 和 JSP 开发的小型信息管理系统 (四) 源代码3

Oracle 和 JSP 开发的小型信息管理系统 (四) 源代码3

摘要: Oracle 和 JSP 开发的小型信息管理系统 (四) 源代码3
<<textarea readonly style="border:none;font-family:Courier New;line-height:150%;width:760px;overflow-y:visible">

//add.jsp 添加信息页面

<%
/*Cookie c[]=request.getCookies();
if(c==null)
{response.sendRedirect("login.jsp");}*/
String userName=(String)session.getAttribute("admin");

if(userName==null)
{response.sendRedirect("login.jsp");}
out.println("Welcome, "+userName);
request.setCharacterEncoding("big5");%>

<%@ page contentType="text/html;charset=big5"%>

<head>

添加信息
</textarea>


↑返回目录
前一篇: JSP/Servlet构建三层管理信息系统
后一篇: Oracle 和 JSP 开发的小型信息管理系统 (五) 源代码4