ok, on the webpage my webbrowser navigates to there is 4 forms, 4 names, and 4 different names, i will explain
on the first form its called "Info", now on this form it has a drop down menu for age,
i have the name of the dropdown menu, its agemnth, and here is the code for it from the webpage source
Code Snippet
<select name="agemnth" onChange = "javascript:document.formInfo.submit()">
<option value="0">January</option>
and it keeps goin... option value 1 will = febuary..ect
now is there a way i can change the value of the agemnth , then submit the form itself?
Also: it submit the form automaticly when you change the value of the dropdownbox, so i need it to do that too,
i just need to change the value in the dropdown box
Note: i have tried looping an HtmlElement untill its name is agemnth , then using ele.Innertext == "March";
then Web.Document.Forms["Info"].Invokemember("submit");
also i hav tried changing the "march" to its id in the source code, 03. still didnt work