I have an aspx page with a drop down list. When a selction is made, I need to pass the selected value to a javascript function in a different page. This second page is displaying a map using javascript:
<script>
var map;
var ServiceName = "http://some_url//this_is_dynamic_part/MapServer
....
</script>
so, from page1.aspx, I need to open this page in a new window and pass a parameter (i.e. drop down's selected value) to replace "this_is_dynamic_part" of variable ServiceName.