I need to create a webpage which will have following features:
- It will have a simple calculator.
- There will be an “Send this calculation to my email” function. User enters his email in a textbox, and we need to send the screenshot of that calculation to his email.
How can that be done?
For taking the screenshot of your screen this is the simple code in C#
To create a screenshot in c# we need to use drawing api of the .net framework
First you have import System.Drawing.Imaging name space with following code…
here is the code in C# for screenshot.