Well I,m a beginner, and I didn't get it yet. So more detail would be go. Here is what I got so far. Form1 is a jump menu that does not have a Request.QueryString attach to it and From2 has a Request.QueryString attach to it at the Dynamic source "<%= Request.QueryString("Countryname2") %>" The jump menus are on "Test Jump page.asp". all the names in the dropdown list go back to the same page. I can see the name and value in the URL at the top of the page. But I can't figure out how to get that to influence the name in the dropdown list.
<body>
<form action="" name="form1" id="form1">
<select name="Countryname1" id="Countryname1" onchange="MM_jumpMenu('parent',this,0)">
<option value="Test Jump.asp?Test1=1" selected="selected">Test1</option>
<option value="Test Jump.asp?Test2=2">Test2</option>
<option value="Test Jump.asp?Test3=3">Test3</option>
<option value="Test Jump.asp?Test4=4">Test4</option>
</select>
</form>
<form name="form2" id="form2">
<select name="Countryname2" id="Countryname2" onchange="MM_jumpMenu('parent',this,0)">
<option value="Test Jump.asp?Test5=5" <%If (Not isNull(Request.QueryString("Countryname2"))) Then If ("Test Jump.asp?Test5=5" = CStr(Request.QueryString("Countryname2"))) Then Response.Write("selected=""selected""") : Response.Write("")%>>Test5</option>
<option value="Test Jump.asp?Test6=6" <%If (Not isNull(Request.QueryString("Countryname2"))) Then If ("Test Jump.asp?Test6=6" = CStr(Request.QueryString("Countryname2"))) Then Response.Write("selected=""selected""") : Response.Write("")%>>Test6</option>
<option value="Test Jump.asp?Test7=7" <%If (Not isNull(Request.QueryString("Countryname2"))) Then If ("Test Jump.asp?Test7=7" = CStr(Request.QueryString("Countryname2"))) Then Response.Write("selected=""selected""") : Response.Write("")%>>Test7</option>
<option value="Test Jump.asp?Test8=8" <%If (Not isNull(Request.QueryString("Countryname2"))) Then If ("Test Jump.asp?Test8=8" = CStr(Request.QueryString("Countryname2"))) Then Response.Write("selected=""selected""") : Response.Write("")%>>Test8</option>
</select>
</form>
</body>
</html>
Edited by Bebopgeo - 15 July 2007 at 3:11pm