0

当数据库中有条目时,此代码可以正常工作,但是当我删除条目时,它会出错。我相信它没有接受空值。我真的不工作,但如果数据库中没有价值,我真的很想了解如何使它工作

<%
Dim rsValue

gParama = "^Param1^,^Param2^"
set rsValue = GetData(000, gParama,"","")
sURL= rsValue("table column")
rsValue = nothing
%>

<html>
 .......
<% if sURL <> "" then %>
   <td>
  <a href=<%sURL%> class="user">
 <img src= "../images/random.gif" > RANDOM</a>
  </td>
 <%end if%>
 .......
 </html>
4

1 回答 1

0

在使用记录集之前,您需要检查 EOF(文件结尾)。

if rsValue.eof then
    'no data!
end of
于 2012-09-20T13:56:40.053 回答