diff options
author | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2006-06-26 15:01:31 +0000 |
---|---|---|
committer | gregor <gregor@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2006-06-26 15:01:31 +0000 |
commit | 3e5304a0062ba4c4a3dcec0212dfba09d939294b (patch) | |
tree | 5be06604b7936bf6b755acebeae8e66c60aa993e /spss.slinterface/pages/test/dataURL.jsp | |
parent | f454209d2ea7e91284668c2f992631e6dfc30445 (diff) | |
download | moa-id-spss-3e5304a0062ba4c4a3dcec0212dfba09d939294b.tar.gz moa-id-spss-3e5304a0062ba4c4a3dcec0212dfba09d939294b.tar.bz2 moa-id-spss-3e5304a0062ba4c4a3dcec0212dfba09d939294b.zip |
Testanwendung überarbeitet (übersichtlicheres Layout, dynamische Generierung der enthaltenen Links).
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@719 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.slinterface/pages/test/dataURL.jsp')
-rw-r--r-- | spss.slinterface/pages/test/dataURL.jsp | 48 |
1 files changed, 37 insertions, 11 deletions
diff --git a/spss.slinterface/pages/test/dataURL.jsp b/spss.slinterface/pages/test/dataURL.jsp index c2b62697f..affef5022 100644 --- a/spss.slinterface/pages/test/dataURL.jsp +++ b/spss.slinterface/pages/test/dataURL.jsp @@ -1,4 +1,4 @@ -<%@ page contentType="text/html; charset=UTF-8" %>
+<%@ page contentType="text/html; ISO-8859-1" %>
<jsp:useBean
id="dataURLResult"
@@ -6,13 +6,39 @@ </jsp:useBean>
<html>
- <head>
- <head><title><jsp:getProperty name="dataURLResult" property="title"/></title></head>
- </head>
- <body>
- <h1>Content-Type</h1>
- <p><pre><jsp:getProperty name="dataURLResult" property="contentType"/></pre></p>
- <h1>Content</h1>
- <p><pre><jsp:getProperty name="dataURLResult" property="content"/></pre></p>
- </body>
-</html>
\ No newline at end of file +<head>
+ <title>Testanwendung für MOA SL - Resultat</title>
+</head>
+ <body>
+<form action="" method="post">
+<table width="800px" align="center">
+<tr>
+<td>
+<h1 align="center">Testanwendung für MOA SL - Resultat</h1>
+<p align="center">Die folgenden Daten wurden von MOA SL als Ergebnis gesendet.</p>
+<table bgcolor="#eeeeee" width="790px" border="1" cellpadding="3">
+<tr>
+<td>Content-Type</td>
+<td>
+<textarea name="DataURL" cols="80" rows="1">
+<jsp:getProperty name="dataURLResult" property="contentType"/>
+</textarea>
+<td>
+</tr>
+<tr>
+<td>Inhalt</td>
+<td>
+<textarea name="XMLRequest" cols=80 rows=20>
+<jsp:getProperty name="dataURLResult" property="content"/>
+</textarea>
+</td>
+</tr>
+</table>
+<p align="center">
+</p>
+</td>
+</tr>
+</table>
+</form>
+</body>
+</html>
|