source: ether_visual/trunk/pop_upapplet.jsp

Last change on this file was 17, checked in by cbipsl, 18 years ago

ajout V3

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1<%@ page import="fr.acri.norm.*" %>
2
3<%@ page import="java.io.*" %>
4<%@ page import="java.util.*" %>
5<%@ page import="java.lang.*" %>
6<%
7send_request req = new send_request();
8
9String id_session="", uniqueid="", mode="";
10
11id_session=request.getParameter("id_session");
12uniqueid=request.getParameter("uniqueid");
13mode=request.getParameter("mode");
14
15req.close_connection();
16%>
17<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
18<html>
19<head>
20        <meta http-equiv="pragma" content="no-cache">
21        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
22        <title>Visualisation V3</title>
23</head>
24<body>
25<form>
26<table>
27<tr>
28<td>
29<applet CODE="com.cnes.ethervisu.client.EtherApplet" ARCHIVE="ethervisu_applet.jar,ion_62.jar,liquidlnf.jar" HEIGHT=0, WIDTH=0>
30<param NAME="ionservername" VALUE="sun-ether">
31<param NAME='id' VALUE='<%=id_session%>'>
32<param NAME='uniqueid' VALUE='<%=uniqueid%>'>
33<param NAME='mode' VALUE='<%=mode%>'>
34</applet>
35</td>
36</tr>
37</table>
38</form>
39</body>
40</html>
41
Note: See TracBrowser for help on using the repository browser.