How can I create a screenshot of an http website and save it on my server, using dot.net
byte[] byteArray = Encoding.ASCII.GetBytes( resp.BodyStr );
MemoryStream stream = new MemoryStream( byteArray );
pictureBox1.Image = Image.FromStream(stream);
stream.Close();
I have tried the above code but it's not working