view software/eXist/webapp/mpdl/_stuff/testDev/test2.xql @ 25:e9fe3186670c default tip

letzter Stand eingecheckt
author Josef Willenborg <jwillenborg@mpiwg-berlin.mpg.de>
date Tue, 21 May 2013 10:19:32 +0200
parents 5589d865af7a
children
line wrap: on
line source

xquery version "1.0";

import module namespace request="http://exist-db.org/xquery/request";

let $id := request:get-parameter("id", ())

return 
<html>
<head>
  <title>Example Web Application</title>
</head>
<body>
  <h1>This is a test</h1>
  {$id}
  
</body>
</html>