1234567891011121314151617181920212223242526272829303132 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- String baseUrl = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+"/";
- %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <style>
- html,body {
- height: 100%;
- }
- </style>
- <script>
- var webInit = function(){
- sessionStorage.setItem('V_LOGINNAME','dfmz');
- sessionStorage.setItem('V_PASSWORD','dfmz123');
- document.getElementsByTagName("body")[0].style.height = document.body.scrollHeight+"px";
- document.getElementsByTagName("body")[0].style.width = document.body.scrollWidth+"px";
- document.getElementsByTagName("body")[0].innerHTML='<iframe id="frame_frontpage" frameborder=0 width="100%" height="100%" allowtransparency="true" scrolling=auto src="view/mainframe.jsp"></iframe>';
- }
- </script>
- <title>智慧消防管理平台</title>
- </head>
- <body onload="webInit();" style="overflow:hidden;">
-
- </body>
- </html>
|