getrpt.jsp.svn-base

来自「一个timesheet程序,用来统计开发人员的度量衡web在线程序.用于软件行业」· SVN-BASE 代码 · 共 26 行

SVN-BASE
26
字号
<%    		  
	String reporttype = request.getParameter("reporttype");
	String startdate =request.getParameter("startdate");
	String enddate = request.getParameter("enddate");
	String projectid="0";
	if( request.getParameter("projectid") != null )
	{
		projectid = ( String )request.getParameter("projectid");
	}
 %>
<html>
<head>
<title>report</title>
<script language="javascript"> 
function bustout(reporttype,startdate,enddate,projectid)
{   
	var newwin = window.open('/rms/mainservlet?urlmapping=disrpt&reporttype='+reporttype+'&startdate='+startdate+'&enddate='+enddate+'&projectid='+projectid,'_blank','height=500,width=700,resizable=yes,scrollbars=yes'); 
}
</script>
</head>
<body onload="bustout('<%=reporttype%>','<%=startdate%>','<%=enddate%>','<%=projectid%>');">
<h1>Report</h1>
<p>Your Request has been submitted</p>
<p>You need Adobe reader to open the report, If you have not Adobe reader, please download <a href="http://www.adobe.com/products/acrobat/readstep2.html" target="news">here.</a></p>
</html>

⌨️ 快捷键说明

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