0
My program contains two CheckListBox
: the chkLstBoxTabela
contains the tables of my comic book and the chkLstBoxColunas
contains the columns of the table selected in chkLstBoxTabela
, so that when we select a table its columns are displayed.
I need when I select another table to save the selected columns from the previous table. It would be possible to do this?
It is possible, but in order for us to guide you correctly, we need you to put the code developed until then in the body of your question. Could you edit it, please?
– Leonel Sanches da Silva
You can do it using
Session
.– Leonardo
It’s not a good idea to use the
Session
for this kind of thing. Remember that it takes up space on the server.– Andre Figueiredo