Hi there . i am getting this error message
ADODB.Recordset error '800a0cc1'
Item cannot be found in the collection corresponding to the requested name or ordinal.
/desc.asp, line 177
Line 177
if(not isNull(rs("photoid").Value)) then
Set rs1 = Server.CreateObject("ADODB.Recordset")
rs1.Open "select [FileData],[ContentType], from upload_table where ImgId = & _
rs("photoid"), cn, 2, 4
If Not rs1.EOF Then
Response.ContentType = rs1("ContentType")
Response.BinaryWrite rs1("FileData")
End If
Please tell me how can i remoove this error message
Thanks in advance.