المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : filling a form on internet !



C# Programming
08-22-2009, 05:01 PM
hi guys , i`m new in C# and now have a problem http://www.barakasoft.com/script/Forums/Images/smiley_smile.gif
i wanna open a web page , then get it`s form (my perpose page has 1 form)
then fill the form , and click the button ! http://www.barakasoft.com/script/Forums/Images/smiley_biggrin.gif
the textbox of user name , is named : "e5ba6b5"
see , i did this :
webBrowser1.Navigate("http://mysite.com");
HtmlElementCollection htm = webBrowser1.Document.Forms;
HtmlElementCollection user = htm.GetElementsByName("e5ba6b5");
is it true ?!
and how should i fill username and click the button ?! http://www.barakasoft.com/script/Forums/Images/smiley_WTF.gif