Simple Question About Transferring Data.
I am new to ASPX, I'm guessing this is just a simple question.
Ok so I have two ASPX WebForm pages.
The first page has a list box which a user may select items on.
The second page has a list box with only the items that were selected on the first page.
Very simple thing, in ASP I would create a form with a submit button and get the data that way. It doesn’t seem a <FORM> tag is proper in ASPX (it tells me "Per the active schema, the element 'FORM' cannot be nested within html")
So how are you supposed to transfer data from one page to another?
Maybe an array of a session variable?