can any one help me
i wan to generate report (RDLC) by using following template …
Dear [Name],
you are able to generate this later. Kindly consider this.
<b>Regards</b>
<span style="color:blue">[CompanyName]</span>
[Address]-[City]
This is Dynamic template that Administrator can change it any time.. so i need to apply this dynamically that how can i add HTML in RDLC however [Name],[CompanyName],… that can be replace by me easily.. but i dnt knw hot i add HTML into RDLC.. ??
plz help me
Thanks in advance…
Add to your report one Label for every TAG, add in the value field a placeholder, like =”$CITY$”
When you process the RDLC report read it from the filesystem, find the placeholder and replace with the current value.
Reload the RDL xml into the reportViewer and execute the report.
More details on this post for details on how to dynamically modify reports stack overflow article