📄 projprofile.jsp.svn-base
字号:
<%@ page import="java.util.List" %>
<%@ page import="com.nsi.components.util.LoginuserUtil" %>
<%@ page import="com.nsi.components.util.info.ProjDropInfo" %>
<%@ page import="com.nsi.components.web.util.ProjectWebUtil" %>
<html>
<head>
<meta http-equiv="content-style-type" content="text/css">
<meta http-equiv="pragma" content="no-cache">
<%
if ( LoginuserUtil.getInstance().isNotLogined(request) )
{
%><meta http-equiv="refresh" content="0; url=/entrance.jsp"><%
}
%>
<title>Achievo-RMS Project Profile</title>
<link href="../theme/master.css" rel="stylesheet" type="text/css">
<script language="javascript">
<!--
function submitform( theform, action )
{
theform.action.value = action;
theform.submit();
}
//-->
</script>
</head>
<body>
<form name="project_form" method="post" action="/rms/mainservlet" >
<h1>Project Profile</h1>
<input type="hidden" name="urlmapping" value="/project/projmodify">
<input type="hidden" name="action" value="displayProject">
<table width="837" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100" class="txtLabel">Project</td>
<td width="400" class="cell">
<select class="cell" name="projectid" size="1">
<%
List<ProjDropInfo> list = ProjectWebUtil.getInstance().getProjectlist(request);
if( !list.isEmpty())
{
int size=list.size();
for( int i=0;i<size;i++ )
{
ProjDropInfo info = list.get(i);
%><option class="cell" value="<%=info.getProjectid()%>"><%=info.getProjectname()%></option><%
}
}
%>
</select>
</td>
<td width="337" class="cell">
<input class="cell" value="Display & Modify" type="button" name="pbshow" onclick="submitform(this.form, 'displayProject')">
</td>
</tr>
</table>
</form>
<form name="pro_create_form" method="POST" action="/rms/mainservlet">
<input type="hidden" name="urlmapping" value="/project/procreatepage">
<table width="837" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="cell">
<input class="cell" value="Add New Project" type="submit" name="rpadd">
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -