the SqlParameter I believe is my issue and I'm not sure a way around it. I have a check box list to store multiple values, such as "[ID],[City],[Amount]" and when add them into my listcheckbox string, I can see it's there but when I pass it into a SqlParameter, it's only grabbing "[ID]" one name from the list and not the rest.
SqlParameter TableList = new SqlParameter("@TableList", listCheckBox);
Anyone had this problem before?