1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0">
|
3
|
|
4
|
<!-- to change the content type or response encoding change the following line -->
|
5
|
<jsp:directive.page contentType="text/html;charset=UTF-8"/>
|
6
|
<jsp:directive.page import="edu.ucsb.nceas.metacat.clientview.ClientView"/>
|
7
|
|
8
|
<jsp:useBean id="clientViewBean" scope="session" class="edu.ucsb.nceas.metacat.clientview.ClientView"/>
|
9
|
<jsp:setProperty name="clientViewBean" property="*"/>
|
10
|
|
11
|
<h2>
|
12
|
<jsp:expression>clientViewBean.getMessage(ClientView.DELETE_MESSAGE)</jsp:expression>
|
13
|
</h2>
|
14
|
<p class="regtext">
|
15
|
DocumentId was: <b><jsp:expression>clientViewBean.getDocId()</jsp:expression></b>
|
16
|
<br/>
|
17
|
<br/>
|
18
|
<a href="./">Return to search page</a>
|
19
|
</p>
|
20
|
</jsp:root>
|