Ok...here is my issue. I have a web page that is using javascript to create a pop-up menu. Making a selection from the menu will send you to an ASP page and needs to send a value for 'click' which will then be evaluated by an if statement to determine which 'include file' will be used.
Here is the portion of the function that is supposed to pass the value:
("PAGE1","location='display.asp?click=one'");
I have already seen somewhere that you cannot use the question mark. The suggestion was to use the following instead:
("PAGE1","location='display.asp/click=one'");
Didn't work. Can any one offer some more advice?
Thanks,
Kevin