I am developing a web application with an interactive feedback tool for users. In this application, users can click the send feedback button. The button overlays over the current web page and allows them to drag the DIV selection area to emphasize specific areas. When they submit their reviews, the HTML of the entire page is transmitted via AJAX back to the server.
Once on the server I now have a line containing an HTML page. From here I would like to run this line through some kind of engine that displays HTML and creates an image. An example way to take a screenshot if you want.
How can you achieve something like this? Are there any engines that are written in C # that can generate HTML code and display an image?
source share