Hvordan skrives dette så det virker?
<%strHTML = GetPageHTML("http://www.karlmoore.com/")
response.write (strHTML )
Public Function GetPageHTML( _
ByVal URL As String) As String
' Retrieves the HTML from the specified URL
Dim objWC As New System.Net.WebClient()
Return New System.Text.UTF8Encoding().GetString( _
objWC.DownloadData(URL))
End Function
%>
