Hi all,
I'm having some problems getting the HTML for this page :
http://it.wikipedia.org/wiki/Episodi_di_Big_Bang_Theory_(quinta_stagione)
Until some days ago, everything works without problem, but since yesterday (or few days ago) I receive in the HTML string a lot of strange chars.
I think is related to a unicode problem, but I cannot find a solution.
Can someone help?
The code I use is very simple :
HttpUtils.CallbackActivity = "view"
HttpUtils.CallbackJobDoneSub = "JobDone"
strSearch = "http://it.wikipedia.org/wiki/Episodi_di_Big_Bang_Theory_(quinta_stagione)"
HttpUtils.Download("Job3", strSearch)
And in the JobDone sub :
If HttpUtils.IsSuccess(strSearch) Then
strHTML = HttpUtils.GetString(strSearch)
strSplitted = Regex.Split(strSplit, strHTML)
Here if I look in the strHTML I find a lots of strange chars and not the HTML.
Thanks in advance,
Fabio
I'm having some problems getting the HTML for this page :
http://it.wikipedia.org/wiki/Episodi_di_Big_Bang_Theory_(quinta_stagione)
Until some days ago, everything works without problem, but since yesterday (or few days ago) I receive in the HTML string a lot of strange chars.
I think is related to a unicode problem, but I cannot find a solution.
Can someone help?
The code I use is very simple :
HttpUtils.CallbackActivity = "view"
HttpUtils.CallbackJobDoneSub = "JobDone"
strSearch = "http://it.wikipedia.org/wiki/Episodi_di_Big_Bang_Theory_(quinta_stagione)"
HttpUtils.Download("Job3", strSearch)
And in the JobDone sub :
If HttpUtils.IsSuccess(strSearch) Then
strHTML = HttpUtils.GetString(strSearch)
strSplitted = Regex.Split(strSplit, strHTML)
Here if I look in the strHTML I find a lots of strange chars and not the HTML.
Thanks in advance,
Fabio