Hi,
In page1.asp I have 2 listboxes. Listbox #1 lists all employees in the office and listbox #2 lists selected employees from the listbox #1. When I click on “Next” button applications calls page2.asp using
Document.form1.action = “Page2.asp?selectedemployee=” + document.form1.listbox1.options[0].value.
Document.sublit();
In page2.asp I have “Previous” button. This button should take to previous screen i.e page1.asp. My problem is how to retain/display original values in listbox #1 and listbox #2
In page1.asp I have 2 listboxes. Listbox #1 lists all employees in the office and listbox #2 lists selected employees from the listbox #1. When I click on “Next” button applications calls page2.asp using
Document.form1.action = “Page2.asp?selectedemployee=” + document.form1.listbox1.options[0].value.
Document.sublit();
In page2.asp I have “Previous” button. This button should take to previous screen i.e page1.asp. My problem is how to retain/display original values in listbox #1 and listbox #2