Would it be possible to add an image to a table with the HTML Report Generator. I have an url with an image. When I add this to the table-option it show the url instead of the image. Which makes sense but that is not my goal.
I tried using the custom html option but then only one row is used. I used the following code.
<table>
<thead>
<tr>
<th>Name</th>
<th>Image</th>
</tr>
</thead>
</tbody>
<tr>
<td>@Value(Name)</td>
<td><img src="@Value(Image)" alt="" border=3 height=100 width=100></img></td>
</tr>
</tbody>
</table>