SearchDocuments/where.aspx
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
</head>
<body>
<form id="form1" runat="server">
<h3>
指定搜索条件</h3>
搜索新闻发表人的编号为 1 的文章
<pz:SearchDocuments runat="server" Path="/sample/news/" PageSize="10">
<HeaderTemplate>
<table width="500" border="1">
<tr>
<th>
新闻标题</th>
<th>
发表人编号</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<%# Eval("subject") %>
</td>
<td>
<%# Eval("userID") %>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table></FooterTemplate>
<Where>
document.userID= 1
</Where>
</pz:SearchDocuments>
</form>
</body>
</html>