⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jobsinfosave.jsp

📁 基于J2EE的网络物流系统 用户操作: 1. 录入出库商品信息 2. 查询出库单信息 3. 录入入库商品信息 4. 查询入库单信息 5. 查询商品位置信息 6. 查询商品信息 7. 查
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="GB2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%request.setCharacterEncoding("gb2312");%>
<%
	String loginname=(String)session.getAttribute("loginname");
	String ok=(String)session.getAttribute("ok");
	String loginpower=(String)session.getAttribute("loginpower");
	if(ok==null&&loginname==null)
 	{
  	   session.setAttribute("errors","对不起您还没有登陆,请先登陆!");
  	   response.sendRedirect("../../errors/errorpage.jsp");
 	}else if(!loginpower.equals("admin")){
 	
 	   session.setAttribute("errors","对不起您没有添加职务信息的权限!");
  	   response.sendRedirect("../../errors/errorpage.jsp");
 	}

 %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>职务信息管理窗体</title>
<style type="text/css">
<!--
body {
	background-color: #168AC2;
}
-->
</style>
<link href="../../cssjs/comcss.css" rel="stylesheet" type="text/css">
<script language="javascript" src="<%=request.getContextPath()%>/cssjs/comjs.js"></script>
</head>
<body>
<table width="476" height="174" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#666699">
  <tr>
    <td width="128" height="24" align="center" class="style5">*标识项必须填写</td>
    <td width="338" align="center">&nbsp;</td>
  </tr>
  <tr>
    <td height="148" colspan="2"><form action="/Logistic/jobsinfosave" method="post" name="jobsinfo" id="jobsinfo">
      <table width="389" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#666699">
        <tr>
          <td width="85" height="28" align="right" class="code">职务名称:</td>
          <td width="298" class="style5"><input name="jobsname" type="text" class="style9" id="jobsname" size="20" maxlength="20">*</td>
        </tr>
        <tr align="center" valign="middle">
          <td height="41" align="right" valign="top" class="code">职务描述:</td>
          <td height="41" align="left" valign="middle"><textarea name="jobsdescrible" cols="40" rows="4" class="style13" id="jobsdescrible"></textarea></td>
        </tr>
        <tr align="center" valign="middle">
          <td height="30" colspan="2" valign="middle"><p><input name="Submit" type="submit" class="buttonstyle" value="提交数据" onClick="return jobsinfo_check()">
            &nbsp;&nbsp;
            <input name="cancel" type="reset" class="buttonstyle" id="cancel2" value="重置数据">
          </p>            </td>
          </tr>
      </table>
    </form></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -