I am upgrading a Dw7.2 application where I append template output to a StringBuilder for caching.
I was not able to get any output from a loop template so I did this instead:
The Reset() method is no longer to be found.StringBuilder buffer = new StringBuilder(); foreach(var product in products) { RenderProduct(product, template); buffer.append(template.Output()); template.Reset(); }