![]() |
Sergey Kornilov admin 4/4/2008 |
Use the following: |
C
|
csernusoft author 4/4/2008 |
Use the following: email = rs("person.email")
|
C
|
csernusoft author 4/6/2008 |
----------------------------------------------- Sergey, In spite of there are two records , the error message comes up: ASP error happened Technical information Error number 3265 Error description Item cannot be found in the collection corresponding to the requested name or ordinal. URL /ic185009_ncr_com/Test1/Persons_list.asp SQL query SELECT top 20 [RowID], name, email, [comment], password FROM Persons Solution There are no records in the recordset. Please edit your event code in the following way: strSQL = "select * from AnyTable where AnyColumn='AnyValue'" set rsTemp = CreateObject("ADODB.Recordset") rsTemp.Open strSQLExists, dbConnection and then use rsTemp("fieldname"). Or you can contact to support@xlinesoft.com and send your event code. We'll help you. --------------------------------------- ? Thanks Imre
|