webBrowser1.Document.GetElementById("youtube-url").SetAttribute("value", textBox1.Text); // put text into textbox
webBrowser1.Document.GetElementById("submit").InvokeMember("onclick"); // click convert video button
That is what I have so far, and taking out webBrowser for httpwebrequest.
_________________
You should keep checking until the html code contains something new, like "download" and when it is 100% completed. {Timer Object}
Then you can activate the download trigger, which is most likely an href link. What you could do for that part would be to enumerate all the href links, and search for one starting with "http://www.youtube-mp3.org/get?video_id=" _________________
So, you should iterate all the href links in the WebBrowser document starting with "/get?" using a for loop. You should be able to retrieve the correct one. _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum