新手提问....
          dim   a 
          a   =   Request.QueryString( "sid ") 
          a   =   replace(a, " ' ", " ' ' ")      
 str= "SELECT   *   FROM   radiocallers   where   caller= ' "   &   a      &    " ' " 
 set   rs=cnn.execute(str)      
 我想如果查不到这个数据的话就在表radiocallers里添加进这个数据,该怎么写呀?
------解决方案--------------------if not rs.eof then 
 ...... 
 end if   
 可以用ado的rs.addnew方法 
 也可以直接用sql语句 直接conn.execute