Um, something isn't quite right...
-
Hello, I've created a WebClient which downloads the index.html file from my webserver and it has been working for the past 3 weeks, but I've had to rewrite my code due to a virus making me format my computer. Here's my code:
WebClient DownloadData = new WebClient();
DownloadData.DownloadFile("myURL", "LocalDestinationPath");I am using the exact same code as I used before. I don't understand why it doesn't work this time. I don't get any error messages, or debugging errors, it just doesn't work. I've tried
DownloadFile
,
DownloadData
,
DownloadStream
and none of them work :'( Can anybody please help shed some light on the matter? Thanks in advance. :-) Regards, Jay.
foreach( inch on Jason ) { Girlfriend.IsHappier(); }
-
Hello, I've created a WebClient which downloads the index.html file from my webserver and it has been working for the past 3 weeks, but I've had to rewrite my code due to a virus making me format my computer. Here's my code:
WebClient DownloadData = new WebClient();
DownloadData.DownloadFile("myURL", "LocalDestinationPath");I am using the exact same code as I used before. I don't understand why it doesn't work this time. I don't get any error messages, or debugging errors, it just doesn't work. I've tried
DownloadFile
,
DownloadData
,
DownloadStream
and none of them work :'( Can anybody please help shed some light on the matter? Thanks in advance. :-) Regards, Jay.
foreach( inch on Jason ) { Girlfriend.IsHappier(); }
Do you get an exception? How do you know it isn't working?
It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.
-
Do you get an exception? How do you know it isn't working?
It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.
-
Do you get an exception? How do you know it isn't working?
It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.
-
Thanks for the reply sebastion, I know it isn't working because the index.html file is not being downloaded into the destination path that I specified. Which is: C:\index.html regards, jason.
foreach( inch on Jason ) { Girlfriend.IsHappier(); }