Hi Juraj,
I tried your code and I got this error:
[CMSDataProperties.LoadTransformation]: http://server/CMSTransformations/1f7da230-f99f-4c91-a243-9fc2cf8b819c/custom/mediumcontentpreview/default.ascx(208): error CS1501: No overload for method 'GetImage' takes 4 arguments
This is old method I'm trying to replace because images are resized in the browser:
<img src="<%# Eval("mcp_image") %>" width="214px" height="139px" alt="<%# Eval("mcp_title") %>"/>
And I replaced it with:
<%# GetImage("mcp_image", 214, 139, ValidationHelper.GetString(Eval("mcp_title"),"")) %>
Any idea what I'm doing wrong? Thanks.