如何检测那个字段为空?
我的数据库有以下字段:userID , username ,password,regdate,a1 ,b1, a2 ,b2, a3 ,b3........a50, b50
现在我想知道,在已经登陆的某用户记录,
a1---a50字段里,哪个字段是空的,
以便把内容添加进去.
i=0
do
i=i+1
if isnull(rs("i")) then
exit do
end if
loop
错误提示:在对应所需名称或序数的集合中,未找到项目。
i=0
do
i=i+1
if isnull(rs!ai) then
exit do
end if
loop
提示:错误类型:
Microsoft VBScript 编译器错误 (0x800A03EE)
缺少 ')'
/ado/addurl.asp, line 37, column 12
if isnull(rs!ai) then
现在关键是在rs("ai")里的i好象不得的.