Page 1 of 1

Help with drop box list from IE

Posted: Thu Apr 12, 2012 2:56 am
by daillest319
I hoping someone can help me with selecting from a drop box list from IE webpage.I'm able to change the value but it not submitting it or updating the page with the year i selected.


the source code on the web page is the following

{code}
<select id="YEAR" name=year size="1" onChange="doChange()"> <option value="2001" >2001 <option value="2002" >2002 <option value="2003" >2003

function doChange() { var wsub1,wsub2,wDate; wsub1 = document.JOBLISTFORM.month.selectedIndex; wsub2 = document.JOBLISTFORM.year.selectedIndex; wDate = document.JOBLISTFORM.year[wsub2].value + document.JOBLISTFORM.month[wsub1].value + "01"; CL(wDate); }
{/code}

-----------------------------------------------------

This is the code im using to change the value and submit but it does not submit.....

oIE.Document.Forms(0).Item("YEAR").Value = 2003
oIE.Document.Forms(0).Submit

Help with drop box list from IE

Posted: Thu Apr 12, 2012 2:56 am
by daillest319
I hoping someone can help me with selecting from a drop box list from IE webpage.I'm able to change the value but it not submitting it or updating the page with the year i selected.


the source code on the web page is the following

{code}
<select id="YEAR" name=year size="1" onChange="doChange()"> <option value="2001" >2001 <option value="2002" >2002 <option value="2003" >2003

function doChange() { var wsub1,wsub2,wDate; wsub1 = document.JOBLISTFORM.month.selectedIndex; wsub2 = document.JOBLISTFORM.year.selectedIndex; wDate = document.JOBLISTFORM.year[wsub2].value + document.JOBLISTFORM.month[wsub1].value + "01"; CL(wDate); }
{/code}

-----------------------------------------------------

This is the code im using to change the value and submit but it does not submit.....

oIE.Document.Forms(0).Item("YEAR").Value = 2003
oIE.Document.Forms(0).Submit

Help with drop box list from IE

Posted: Thu Apr 12, 2012 3:01 am
by jvierra
Sorry but this is a scripting forum and not a web development forum.

Your code is also not vbscript it is jscript. Form submission is an HTML/ASP server side issue. FOrms are submitted to a server.
The code and HTML posted are not workable. The listbox is broken and the code cannot be embedded into teh page like that.

Try posting here:http://forums.iis.net/1044.aspx

Help with drop box list from IE

Posted: Thu Apr 12, 2012 4:35 am
by jvierra
U think you need to learn a little about web development. You also need to go to a web forum with your questions. This forum is for administrative scripting and not for web development.

Help with drop box list from IE

Posted: Wed Aug 22, 2012 5:56 pm
by richelmark
There are many sites and forums there you can learn web development like w3schools.com ..
Mobile App Developmentrichelmark2012-08-23 00:56:56