I want to make a screenshot of a full webpage in my web application. I found a way to do this using the WebBrowser
class, from the example over here (the accepted answer).
However, the WebBrowser
class is located in the System.Windows.Forms namespace, and I therefore feel unsure about, whether it's okay to use this namespace in a web application. If not what will be the right approach to do this?