help me out
I have a products page which populate products dynamically with checkboxes. when the form is submitted, I check for selected boxes using the split(). My problem is, products page submits the form to client.asp, and within that page is client info. then the client page is submitted to confirmOrders.asp, which will display client info, and products selected. the split() works fine within the client.asp page. I'm trying to assign the checkboxs to a Session variable and use it on confirmOrder.asp. Then display the session variable on confirmOrders.asp page. I know I can do everything in one shot with confirmOrders.asp, but the client wants to display the client.asp page then the latter.
I have tried my best to explain my problem, hope you understand
<client.asp>
Session("myarray") = Request.Form("chkproduct")
<orderConfirm.asp>
strP = Session("myarray")
p_Array = Split(st
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --