A
abcd
I am unable to display the bitmap (gif/png/jpg) using below code
HttpWebRequest httpWebRequest =
(HttpWebRequest)WebRequest.Create("http://localhost/company.gif");
HttpWebResponse httpWebResponse =
(HttpWebResponse)httpWebRequest.GetResponse();
Stream receiveStream = httpWebResponse.GetResponseStream();
What exactly is missing here...can someone focus..why I am not able to see
the image on my Web page
HttpWebRequest httpWebRequest =
(HttpWebRequest)WebRequest.Create("http://localhost/company.gif");
HttpWebResponse httpWebResponse =
(HttpWebResponse)httpWebRequest.GetResponse();
Stream receiveStream = httpWebResponse.GetResponseStream();
What exactly is missing here...can someone focus..why I am not able to see
the image on my Web page