Hey

Well I'm trying to log into Squidoo and simply download data from basically your own dashboard, I've written this in C sharp but I don't think it matters tbh.

vb Code:
  1. Private Sub LoginSquidoo()
  2.         Dim wc As New WebClient()
  3.        
  4.        Dim nc As New NetworkCredential("email", "password", "http://www.squidoo.com/member/login")
  5.        
  6.         wc.Credentials = nc
  7.         Try
  8.             Dim response As Byte() = wc.DownloadData("http://www.squidoo.com/lensmaster/dashboard")
  9.             Dim result As String = Encoding.ASCII.GetString(response)
  10.            richTextBox1.Text = result
  11.        Catch e As Exception
  12.           MessageBox.Show("Exception", e.ToString())
  13.        End Try
  14.      End Sub

I'm getting no errors, and analysing the HTML within the result string just shows the login page, without an error or anything, it's like I just browse to the login page and did nothing. The login page looks simple enough, maybe a POST or something, but maybe the authentication scheme just doesn't work with this, advice appreciated.