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

📄 header1.jsp

📁 jBpm是一个灵活可扩展的工作流管理系统。作为jBpm运行时server输入的业务流程使用简单强大的语言表达并打包在流程档案中
💻 JSP
字号:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ page import="org.jbpm.webapp.bean.*" %>

<!-- HEADER -->
<html>
<head><title>JBoss jBPM</title>
<link rel="stylesheet" type="text/css" href="css/jbpm.css" />
</head>

<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <!-- next line must be put one (1!) line to overcome an IE-layouting bug -->
    <td><a href="http://www.jboss.com/"><img src="images/logo_green.gif" alt="JBoss Inc." border="0" /></a></td>
    <td width="100%" valign="top">
      <table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="100%" height="22" bgcolor="#9BCD4B" align="center" nowrap="nowrap">
<%
UserBean userBean = (UserBean) session.getAttribute("userBean");
if ( (userBean!=null)
     && (userBean.getUserName()!=null) 
   ) {
%>
You are logged in as <%= userBean.getUserName() %>
<%
} else {
%>
You are not logged in.
<%
}
%>
| <b><a href="login.jsp">Login as another user</a></b>
          </td>
        </tr>
        <tr>
          <td width="100%" align="right" valign="middle" nowrap="nowrap">
            <a class="ref" href="http://jbpm.org/docs">Docs</a> &nbsp;&nbsp;
            <a class="ref" href="http://jbpm.org/forums">Forums</a> &nbsp;&nbsp;
            <a class="ref" href="http://jbpm.org/wiki">Wiki</a> &nbsp;&nbsp;
            <a class="ref" href="http://jbpm.org/downloads">Download</a> &nbsp;&nbsp;
            <a class="ref" href="http://jbpm.org/contact">Contact</a> &nbsp;&nbsp; &nbsp;&nbsp;
          </td>
        </tr>
        <tr>
          <td width="100%" valign="top" nowrap="nowrap">
            <hr style="margin:0px; padding:0px;" size="1" width="100%" />
            <h2 style="padding:0px; margin:0px; border:0px;" >

⌨️ 快捷键说明

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