Hello,
Every data of the displayed document can be accessed via the Eval("FieldName") method. Please check some default transformations on the usage. It also depends on the transformation type. If you are using the Text/XML transformation type, then the syntax would be:
{% Eval("FieldName") %}
If you are using the ASCX transformation type, the syntax would be a bit different:
<%# Eval("FieldName") %>
Otherwise, you can also define custom transformation functions to generate the code you need, so you are not restricted by the built in methods. The Eval() method output can be used as a parameter for your custom method. For more information on that topic please check this
documentation on custom transformation functions.
Best regards,
Boris Pocatko