Hi charbf,
I already tried that and something similar but unfortunately I'm getting this error.
[CMSDataProperties.LoadTransformation]: http://server/CMSTransformations/98b3398b-cbdf-4abe-9578-66c4fddd6748/csmls/news/sidebar.ascx(3): error CS1061: 'ASP.cmstransformations_98b3398b_cbdf_4abe_9578_66c4fddd6748_csmls_news_sidebar_ascx' does not contain a definition for 'EnglishTitle' and no extension method 'EnglishTitle' accepting a first argument of type 'ASP.cmstransformations_98b3398b_cbdf_4abe_9578_66c4fddd6748_csmls_news_sidebar_ascx' could be found (are you missing a using directive or an assembly reference?)
I have property 'EnglishTitle' with some default value, as you can see here:
http://prntscr.com/3bajaAnd this is my transformation:
<%# this.EnglishTitle %>
<div class="newsItem">
<div class="date">
<%# GetDateTime("NewsDate", "MMMM dd, yyyy") %>
</div>
<div class="newsItemText">
<%# Eval("NewsTitle") %>
</div>
<a class="readMore" href="<%# GetDocumentUrl() %>">Read more</a>
</div> <!-- newsItem -->
I'm not sure what I'm doing wrong here. Any help will be appreciated.