Kindly help me with the following :
I am using SQL database server 2008, in which I have a table with columns as shown in the image attached. 
I want to retrieve the ToolTip column and extract string after Controls: and separate type=value strings and list in a ListBox separately.
Then I want to loop through each row get the list and compare this list with another set of similar list and check if they have same string lists. I haven’t tried any code, since I don’t know how to start in the first place. Any help will be appreciated. Thank you.
It would be better if you had
Profile_Controls Table
Then you can select
This give you more flexibility as you can filter, JOIN, COMPARE, and use other built-in SQL functionality
If you still want to maintain your table structure like you have it
UPDATE
in your page
You can use this link as reference for adding item to your listBox How to retrieve commas delimited values in SQL to a ListBox separately