1234567891011121314151617181920212223242526272829303132 |
- <%@ page contentType="text/html; charset=UTF-8" language="java"%>
- <%@ page
- import ="com.sysmodel.datamodel.xmlmanager.xmlobjdll.*"
- %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
- <link rel="stylesheet" href="../../../../../styles/style.css" type="text/css"></link>
- <title>My JSP 'getCanMuEn.jsp' starting page</title>
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <!--
- <link rel="stylesheet" type="text/css" href="styles.css">
- -->
- </head>
- <body class="tundra" topmargin="0">
- <br>
- <%
- SysModeldllable SysModeldllable = new SysModeldllimpl();
- out.print(SysModeldllable.getEnglishByDescription());
- %>
- </body>
- </html>
|