I have a simple problem and i can't work out what is going on, i have loaded generated images to picture boxes before with the same url structure with no problems, the below url is the location of my image but when i try picturebox1.load(url) it loads it no problem apparently but the imagebox shows no image, try blocks show it works fine.
If i browse to the url the image shows, if i use html to show the image with the url as src it works fine also...
What am i missing here?
Image location is:
Code:
pictureBox1.Load("http://www.thedemonsden.com/index.php?action=verificationcode;vid=register;rand=dd253984e86650be850ff83e24900251");
If i try something like:
richTextBox1.Text += pictureBox1.ImageLocation.ToString();
it shows that the location is indeed correct....
Thanks in advance,