Search results for query: *

  • Users: Pete
  • Content: Threads
  • Order by date
  1. P

    I've made my program login to a site, how can I make it store cookies?

    Private Function web_post(ByVal host As String, ByVal uri As String, ByVal postdata As String) As String Dim tcp As New System.Net.Sockets.TcpClient Dim netstream As System.Net.Sockets.NetworkStream Try tcp.Connect(host, 80) Catch ex As Exception Return ex.Message End Try Dim...
  2. P

    Trying to download HTML, HTML gets cut off half way through downloading?

    [RESOLVED]Trying to download HTML, HTML gets cut off half way through downloading? PublicClass Form1 Inherits System.Windows.Forms.Form PublicConst TR_HOSTNAME AsString = "www.example.com" PublicConst USER_Agent AsString = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10)...
Back
Top