I want to download a file from,
[Click Here](Here is the link : http://www33.zippyshare.com/v/67074373/file.html)
I got this code :
Dim Str As String = Me.WebBrowser1.Document.GetElementById("downloadB").GetAttribute("href")
If (Str.EndsWith("zip")) Then
WebBrowser1.Navigate("http://www33.zippyshare.com" + Str)
End If
amd it works fine but my problem is that my application is automated and I want the wbebrowser download dialog to be hidden and file should be downloaded directly to the place I want.
Don't tell me to save the link as string and then download it through DownloadFile method as the link is autogenerated by zippyshare and I can only download it in same session or link will expire. which means i have to use the webbrowser, unless there is a way to get the .zip link by another method.
I don't care which language you can give me your answer :3, i need it to accept some arguments during startup (preferred c#, c++, vb) so I send the link over :3
please help me.