comparison software/eXist/webapp/mpdl/_stuff/testDev/test2.xql @ 7:5589d865af7a

Erstellung XQL/XSL Applikation
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Tue, 08 Feb 2011 15:16:46 +0100
parents
children
comparison
equal deleted inserted replaced
6:2396a569e446 7:5589d865af7a
1 xquery version "1.0";
2
3 import module namespace request="http://exist-db.org/xquery/request";
4
5 let $id := request:get-parameter("id", ())
6
7 return
8 <html>
9 <head>
10 <title>Example Web Application</title>
11 </head>
12 <body>
13 <h1>This is a test</h1>
14 {$id}
15
16 </body>
17 </html>