<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=gb_2312-80">
<TITLE>Document Title</TITLE>
</HEAD>
<BODY>
<table border="1" width="100%" height="30">
<tr>
<td width="20%" height=5>Value</td>
<td width="25%" height=5>String Length</td>
<td width="25%" height=5>String Link</td>
<td width="25%" height=5>LEFT Function</td>
<td width="25%" height=5>RIGHT Function</td>
<td width="25%" height=5>String Compare</td>
</tr>
<tr>
<td width="25%" height=5>谢谢!您使用我们的产品。</td>
<td width="25%" height=5><%response.write(LEN("谢谢!您使用我们的产品。"))%></td>
<td width="25%" height=5><%response.write("China
"& "谢谢!您使用我们的产品。")%></td>
<td width="25%" height=5><%response.write(LEFT("谢谢!您使用我们的产品。",5))%></td>
<td width="25%" height=5><%response.write(RIGHT("谢谢!您使用我们的产品。",5))%></td>
<td width="25%" height=5><%response.write(strcomp("谢谢您!使用我们的产品。","谢谢你!使用我们的产品"))%></td>
</tr>
</table>
</BODY>
</HTML>
|