Jun 27, 2001 #1 xenomage Programmer Jun 27, 2001 98 SG Hi all, i'm just full of qns. Hope you guys can help me out once more. What is the syntax to get the value of the select item in a combo box?? Thanks
Hi all, i'm just full of qns. Hope you guys can help me out once more. What is the syntax to get the value of the select item in a combo box?? Thanks
Jun 28, 2001 #2 link9 Programmer Nov 28, 2000 3,387 US Well, in ASP, you just ask for the request.form("selectName" on the receiving page -- In client side javascript on the same page as the select, you would ask for: document.formName.selectName.value to get the textual value or: document.formName.selectName.selectedIndex to get the ordinal reference of what is selected hope that helps Paul Prewett Upvote 0 Downvote
Well, in ASP, you just ask for the request.form("selectName" on the receiving page -- In client side javascript on the same page as the select, you would ask for: document.formName.selectName.value to get the textual value or: document.formName.selectName.selectedIndex to get the ordinal reference of what is selected hope that helps Paul Prewett