I was building an application that posts videos to the users domain.I used webbrowser control for that.it works pretty well without an error.but when the application has more videos to post then it sometimes gets stuck.
like when i click submit button in code it works well but when it does this for may be 10 times it stops rite there sometime it continues after some delays and it also continues if we click button manually.
This is the strange thing.any clue what might be wrong or may be there is some issue with the cache.
if there is an alternative way to do this please let me know
CODE in DocumentComplete Event
//Select HTML view
if (webBrowserPostVideo.Document.GetElementById("edButtonHTML") != null)
webBrowserPostVideo.Document.GetElementById("edButtonHTML").InvokeMember("click");
//Enter Content
if (webBrowserPostVideo.Document.GetElementById("content") != null)
{
webBrowserPostVideo.Document.GetElementById("content").InvokeMember("click");
webBrowserPostVideo.Document.GetElementById("content").InvokeMember("click");
webBrowserPostVideo.Document.GetElementById("content").InvokeMember("click");
webBrowserPostVideo.Document.GetElementById("content").SetAttribute("InnerText",
youtubeVideos[SelectedVideo].VideoCode
.Replace("<HTML>", "").Replace("</HTML>", "").Replace("<BODY>", "").Replace("</BODY>", ""));
}
//post Month
if (webBrowserPostVideo.Document.GetElementById("mm") != null && youtubeVideos[SelectedVideo].PostingDateTime.Substring(6, 2) != null)
webBrowserPostVideo.Document.GetElementById("mm").SetAttribute("value",
youtubeVideos[SelectedVideo].PostingDateTime.Substring(5, 2));
//Post Date
if (webBrowserPostVideo.Document.GetElementById("jj") != null && youtubeVideos[SelectedVideo].PostingDateTime.Substring(8, 2) != null)
webBrowserPostVideo.Document.GetElementById("jj").SetAttribute("value",
youtubeVideos[SelectedVideo].PostingDateTime.Substring(8, 2));
//Post Year
if (webBrowserPostVideo.Document.GetElementById("aa") != null && youtubeVideos[SelectedVideo].PostingDateTime.Substring(0, 4) != null)
webBrowserPostVideo.Document.GetElementById("aa").SetAttribute("value",
youtubeVideos[SelectedVideo].PostingDateTime.Substring(0, 4));
//Post Hour
if (webBrowserPostVideo.Document.GetElementById("hh") != null && youtubeVideos[SelectedVideo].PostingDateTime.Substring(11, 2) != null)
webBrowserPostVideo.Document.GetElementById("hh").SetAttribute("value",
youtubeVideos[SelectedVideo].PostingDateTime.Substring(11,2));
//Post Minutes
if (webBrowserPostVideo.Document.GetElementById("mn") != null && youtubeVideos[SelectedVideo].PostingDateTime.Substring(14, 2) != null)
webBrowserPostVideo.Document.GetElementById("mn").SetAttribute("value",
youtubeVideos[SelectedVideo].PostingDateTime.Substring(14, 2));
//Enter Video Title
if (webBrowserPostVideo.Document.GetElementById("title") != null)
webBrowserPostVideo.Document.GetElementById("title").SetAttribute("value", youtubeVideos[SelectedVideo].VideoTitle);
if (webBrowserPostVideo.Document.GetElementById("publish") != null)
{
Thread.Sleep(2000);
webBrowserPostVideo.Document.GetElementById("publish").InvokeMember("click");
webBrowserPostVideo.Document.GetElementById("publish").InvokeMember("click");
Thread.Sleep(2000);
SelectedVideo++;
webBrowserPostVideo.Document.GetElementById("publish").InvokeMember("click");
}