SAlve, dovrei fare una pagina in asp.net che effettua il login automatico a megaupload. L'ho fatto in vb.net con il controllo webbrowser e nessun problema. Ora in asp ho provato ad usare uno script di msdn che utilizza il post:

Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmd2.Click
Dim request As WebRequest = WebRequest.Create("http://www.megaupload.com/?c=login")
' Set the Method property of the request to POST.
request.Method = "POST"
' Create POST data and convert it to a byte array.
Dim postData As String = "username=*****&password=*****"
Dim byteArray As Byte() = Encoding.UTF8.GetBytes(postData)
' Set the ContentType property of the WebRequest.
request.ContentType = "application/x-www-form-urlencoded"
' Set the ContentLength property of the WebRequest.
request.ContentLength = byteArray.Length
' Get the request stream.
Dim dataStream As Stream = request.GetRequestStream()
' Write the data to the request stream.
dataStream.Write(byteArray, 0, byteArray.Length)
' Close the Stream object.
dataStream.Close()
' Get the response.
Dim response As WebResponse = request.GetResponse()
' Display the status.
Console.WriteLine(CType(response, HttpWebResponse).StatusDescription)
' Get the stream containing content returned by the server.
dataStream = response.GetResponseStream()
' Open the stream using a StreamReader for easy access.
Dim reader As New StreamReader(dataStream)
' Read the content.
Dim responseFromServer As String = reader.ReadToEnd()
' Display the content.
Console.WriteLine(responseFromServer)

lblresponse.Text = responseFromServer
' Clean up the streams.
reader.Close()
dataStream.Close()
response.Close()

End Sub


Per verifica ho messo la lblresponse, e al click mi resituisce la pagina del login, ma non sono stato autenticato. C'è 1 altro modo per farlo?? Help!!!!

Grazie!