1
數據我使用asp.net VB處理Web客戶使用XQuery
Dim objWebClient As New WebClient()
objWebClient.UseDefaultCredentials = True
objWebClient.Headers.Add(HttpRequestHeader.UserAgent, "XPlorer")
'STEP 2: Call the DownloadedData method
Const strURL As String = "http://www.example.com"
Dim aRequestedHTML() As Byte
aRequestedHTML = objWebClient.DownloadData(strURL)
'STEP 3: Convert the Byte array into a String
Dim objUTF8 As New UTF8Encoding()
Dim strRequestedHTML As String
strRequestedHTML = objUTF8.GetString(aRequestedHTML)
從跨域網頁檢索HTML此外,我想只顯示一個在字面控制它的一部分。作爲一個例子,我想顯示類「結果」的表。
如何在VB.NET中進一步處理XML和XQuery?我如何將strRequestedHTML聲明爲XML,以及如何在其中使用xquery?提前
THX ...