VB.Net by API/System.Net/HttpWebRequest — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 12:49, 26 мая 2010

HttpWebRequest.Create

   

Imports System
Imports System.Net
Imports System.IO
Imports System.Environment
Module GetURL
    Sub Main()
        Dim sOutput As String
        Dim sURL As String = "http://www.vbex.ru"
        Try
           Dim objNewRequest As WebRequest = HttpWebRequest.Create(sURL)
           Dim objResponse As WebResponse = objNewRequest.GetResponse
           Dim objStream As New StreamReader(objResponse.GetResponseStream())
           sOutput = objStream.ReadToEnd()
        Catch eUFE As UriFormatException
            sOutput = "Error in URL Format: [" & sURL & "]" & NewLine() & eUFE.Message
        Catch eWEB As WebException
            sOutput = "Error With Web Request: " & NewLine() & eWEB.Message
        Catch e As Exception
            sOutput = e.ToString
        Finally
            Console.Write(sOutput)
        End Try
    End Sub
End Module