| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <HTML>
- <HEAD>
- <SCRIPT LANGUAGE='javascript'>
- //document.cookie = "userId=828";
- //alert(document.cookie);
- function dsble_Help() {
- return false;
- }
- document.onhelp = dsble_Help;
- if (window.screen) {
- setTimeout('top.moveTo((screen.availWidth-1024)/2, (screen.availHeight-675)/2)', 0);
- setTimeout('top.resizeTo(1000, 745)', 0);
- }
- </SCRIPT>
- </HEAD>
- <%
- String username = request.getParameter("username");
- String password = request.getParameter("password");
- if (username == null || username.equals("")) {
- username = "r2";
- password = "111111";
- }
- if (password == null || password.equals(""))
- password = "111111";
- String pageId = request.getParameter("pageId");
- if (pageId == null || page.equals(""))
- pageId = "../../G/G07/UIG070040.xrw";
- String cookie = username + "|" + password + "|" + pageId;
- %>
- <BODY topmargin="10" leftmargin="0" bottommargin="0" rightmargin="0"
- oncontextmenu="return false" ondragstart="return false"
- onselectstart="return false" onselect="document.selection.empty()"
- oncopy="document.selection.empty()" onbeforecopy="return false"
- onmouseup="document.selection.empty()"
- style="overflow-x:hidden;overflow-y:hidden">
- <TABLE WIDTH="100%" HEIGHT="100%" cellpadding="0" cellspacing="0"><TR><TD ALIGN="center" VALIGN="middle">
- <OBJECT id='sample' classid='CLSID:4DA55DF4-4825-44CF-9790-4D29E8F02AC7' width='980' height='695'>
- <PARAM name='src' value='./Z/Z00/singleReport.xrw'/>
- <PARAM name='controlName' value='sample'/>
- <PARAM name='domainName' value=''/>
- <PARAM name='errorPage' value='<%= cookie %>'/>
- </OBJECT>
- </TD></TR></TABLE>
- </BODY>
- </HTML>
|