Hi,
I am trying to create a second dynamic drop-down menu (Menu 2) that responds to the selection made in the first drop-down menu (Menu 1).
The first menu is generated from an Access table via an include file (Include 1).
I have second drop-down menu (Menu 2) that comes from the same table via another include statement (Include 2) in which I’m trying to pass a variable representing the choice made from the first menu (Menu 1)that modifies the SQL used to get the list.
Currently, the second menu (Menu 2) only displays the default item (“Make a selection”). This tells me the variable selected from (Menu 1) is not getting passed to (Include 2) via Request.Form(“VariablefromMenu1”). I guess that’s b/c (Include 2) is only read when the ASP page is initially loaded/viewed.
How can I make (Menu 2) respond to (Menu 1) w/o writing a bunch of code in the ASP page?
Thanks!!
Mike