答案:<td valign="top">DocSubject</td><br>
<td valign="top">文档的主题</td><br>
</tr><br>
<tr><br>
<td valign="top">DocAuthor</td><br>
<td valign="top">文档的作者</td><br>
</tr><br>
<tr><br>
<td valign="top">DocKeywords</td><br>
<td valign="top">文档中的关键字</td><br>
</tr><br>
<tr><br>
<td valign="top">DocComments</td><br>
<td valign="top">文档中的注释</td><br>
</tr><br>
</table><br>
<br>
<p>属性名的完整列表,请参阅本页后面的<a href=><br>
<h2><a name="RelationalOperators">关系运算符</a></h2><br>
<br>
<p>关系运算符用于关系属性查询中。</p><br>
<br>
<table border="1" cellpadding="4" cellspacing="1" width="100%"><br>
<tr><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>搜索目标</th><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>示例</th><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width=33%>结果</th></tr><br>
<tr><br>
<td valign="top">与固定值相关的属性值</td><br>
<td valign="top">@size < 100 <br><br>
@size <= 100 <br><br>
@size = 100 <br><br>
@size != 100 <br><br>
@size >= 100 <br><br>
@size > 100 </code></td><br>
<td valign="top">大小与查询匹配的文件</td><br>
</tr><br>
<tr><br>
<td valign="top">拥有全部比特集的属性值</td><br>
<td valign="top"><code>@attrib ^a 0x820</code></td><br>
<td valign="top">拥有存档属性的压缩文件</td><br>
</tr><br>
<tr><br>
<td valign="top">拥有一些比特集的属性值</td><br>
<td valign="top"><code>@attrib ^s 0x20</code></td><br>
<td valign="top">拥有存档属性的文件</td><br>
</tr><br>
</table><br>
<br>
<h2><a name="PropertyValues">属性值</a></h2><br>
<br>
<table border="1" cellpadding="4" cellspacing="1" width="100%"><br>
<tr><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="130">搜索目标</th><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="200">示例</th><br>
<th align="Left" valign="bottom" bgcolor="#C0C0C0" width="170">结果</th></tr><br>
<tr><br>
<td valign="top">指定值</td><br>
<td valign="top"><code>@DocAuthor = Bill Barnes </code></td><br>
<td valign="top">由“Bill Barnes”创作的文件</td><br>
</tr><br>
<tr><br>
<td valign="top">以前缀开始的值</td><br>
<td valign="top"><code>#DocAuthor George* </code></td><br>
<td valign="top">作者名字是以“George”打头的文件</td><br>
</tr><br>
<tr><br>
<td valign="top">带扩展名集中任何一种扩展名的文件</td><br>
<td valign="top"><code>#filename *.|(exe|,dll|,sys|) </code></td><br>
<td valign="top">带 .exe、.dll 或 .sys 扩展名的文件</td><br>
</tr><br>
<tr><br>
<td valign="top">在某个日期之后修改过的文件</td><br>
<td valign="top"><code>@write > 96/2/14 10:00:00</code></td><br>
<td valign="top">在 1996 年 2 月 14 日 10:00 GMT 之后修改过的文件<br>
</td><br>
</tr><br>
<tr><br>
<td valign="top">在相对日期之后修改过的文件</td><br>
<td valign="top"><code>@write > -1d2h</code></td><br>
<td valign="top">在最近 26 小时之内修改过的文件</td><br>
</tr><br>
<tr><br>
<td valign="top">匹配一个矢量的矢量</td><br>
<td valign="top"><code>@vectorprop = { 10, 15, 20 }</code></td><br>
<td valign="top">矢量值为 { 10, 15, 20 } 的 ActiveX 文档</td><br>
</tr><br>
<tr><br>
<td valign="top">每一个值都与标准匹配的矢量</td><br>
<td valign="top"><code>@vectorprop >^a 15</code></td><br>
<td valign="top">矢量值的每一个值都大于 15 的 ActiveX 文档</td><br>
</tr><br>
<tr><br>
<td valign="top">至少有一个值与标准匹配的矢量</td><br>
<td valign="top"><code>@vectorprop =^s 15</code></td><br>
<td valign="
上一个:用asp怎样编写文档搜索页面(使用index server)----1
下一个:用asp怎样编写文档搜索页面(使用index server)----3