Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need list of properties associated with a specific item??

Status
Not open for further replies.

BradEdwards

Technical User
Oct 7, 2000
25
0
0
US
following is some sample asp code:


Dim docProperties
On Error Resume Next
set docProperties = documentDataProvider.GetDocumentProperties( docID, requestProperties )
If Err.number <> 0 Then
Err.Clear
On Error Goto 0
webService.PresentError response, documentDataProvider
Response.End
End If
On Error Goto 0


docName = docProperties.GetProperty( &quot;Name&quot; )
revisionID = docProperties.GetProperty( &quot;revisionID&quot; )
fileTypeID = docProperties.GetProperty( &quot;fileTypeID&quot; )
displayTypeID = docProperties.GetProperty( &quot;displayTypeID&quot; )
pageCount = docProperties.GetProperty( &quot;pageCount&quot; )
textSearch = docProperties.GetProperty( &quot;textSearch&quot; )
overlay = docProperties.GetProperty( &quot;overlay&quot; )

My question is...this docProperties item has some properties associated with it such as Name, RevisionID, FileTypeID, etc. Is there anyway I can get a list of these properties by looping thru it somehow?? Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top