How to display a picture at url?

  • Thread starter Thread starter Stan Huang at Taiwan
  • Start date Start date
S

Stan Huang at Taiwan

Guest
Below is a snippet of my program to show a picture from url which was verified using web browser:

picMatcheds[picId] = new PictureBox();
picMatcheds[picId].Width = 100;
picMatcheds[picId].Height = 100;
picMatcheds[picId].Location = new Point (650, 100);
string url = @"http://localhost:8099/image/" + imageDataId;
picMatcheds[picId].Load(url);
picMatcheds[picId].Show();

I can't see picture shown at my program. How come?

Continue reading...
 
Back
Top