kentico_borisp
-
1/25/2011 2:47:55 PM
RE:how to get currentdocument details of the document being accessed by repeater.
Hello,
It depends on where you want to get those data. If in a transformation then you can simply use the <%# Eval("DocumentName") %> method. If you need to get to the documents in the repeater directly in the code behind you can use the following code (OnPreRender method):
repItems.DataSource;
And you can handle this object like a regular datasource.
Best regards, Boris Pocatko
|