Tagged Questions
The downloadstring tag has no wiki summary.
3
votes
5answers
180 views
C# static scope issue
Using WPF and .NET 4.0.
I'm downloading some data using WebClient and using DownloadStringCompletedEventHandler to fire off my DownloadCompletedCallback function upon completion.
The issue I'm ...
2
votes
1answer
489 views
DownloadStringAsync() does not download the string asynchronously
Trying to implement downloadStringAsync() to prevent UI freezing for 10 seconds when downloading one byte of data. However, even though the download completes, it is freezing the UI just as if I used ...
2
votes
2answers
209 views
How to use WebClient without blocking UI?
Can someone point me to a tutorial or provide some sample code to call the System.Net.WebClient().DownloadString(url) method without freezing the UI while waiting for the result?
I assume this would ...
2
votes
3answers
125 views
C# String manipulation
I am working on an application that gets text from a text file on a page.
Example link: http://test.com/textfile.txt
This text file contains the following text:
1 Milk Stuff1.rar
2 Milk Stuff2.rar
3 ...
2
votes
1answer
461 views
vb.net WebClient.DownloadString fails to retrieve html
Can anyone help explain why the code below fails to retrieve the html
Dim WebReqeust As WebClient = New WebClient
Dim URL as string = "http://www.professionalorganizervannuys.com"
Dim WebPage As ...
0
votes
2answers
203 views
C#/Why does Get html returns random junk characters?
I have this for ex:
Link
This code:
const String nick = "Alex";
const String log = "http://demonscity.combats.com/zayavka.pl?logs=";
foreach (DateTime cd in dateRange)
{
string str = log + ...
0
votes
1answer
117 views
.net downloadstring(url) returning 503 error suddenly
I have a simple function to scrape a web page that is suddenly getting a 503 error from the following code for a specific page:
try
{
WebClient client = new WebClient();
client.Proxy = null;
...
0
votes
1answer
347 views
issue with WebClient DownloadString
issue with WebClient DownloadString :
My Code ~
WebClient Wc = new WebClient();
string myUrl = "http://www.google.com";
string myStr = string.Empty;
myStr = Wc.DownloadString(myUrl);
...
0
votes
3answers
1k views
DownloadStringAsync wait for request completion
I am using this code to retrieve an url content:
private ArrayList request(string query)
{
ArrayList parsed_output = new ArrayList();
string url = string.Format(
...
0
votes
1answer
902 views
The remote server returned an error: (404) Not Found
I am running this piece of code to get the source code (as string) of my webpage.
The problem is why this function returns 404 error?
Private Function getPageSource(ByVal URL As String) As String
...
0
votes
2answers
440 views
Why isnt WPF displaying an accented character correctly?
I'm downloading a webpage, and then loading strings from the page into a WPF UI.
One string has an accented character: "Ãine".
In the debugger, the string looks fine, but when added to a WPF ListBox, ...