Forum Moderators: open
--------------------------
<HEAD>
<SCRIPT>
function go(){
window.location='theSamePage.asp';
}
</SCRIPT>
</HEAD>
.
.<other code goes here>
.
<*
'sComboEntry doesnt ever seem to get valued!
Dim sComboEntry
sComboEntry = Request.Form("myComboBox")
*>
<FORM Name='myForm' Method='POST' Action=''>
<SELECT Name='myComboBox' onChange=go();>
<OPTION VALUE='val1'>Combo Box Entry 1
<OPTION VALUE='val2'>Combo Box Entry 2
</SELECT>
</FORM>
.
.<other code goes here>
.
Also, you never submit the form, so there is no "Request.Form" to read.
In order to generate the Request.form, the form has to be submitted.
What are you trying to do with this code? Redirect a page based on the select box? If so, there are other ways to do it.
Also, this question might have more response in the Microsoft ASP forum. I'll ask to move it there.
BTW, I like to close my <option> tags with </option>.