I have a Multi Select list box in a ASP page. It displays some Text values but internally, each text value is given a unique numeric id. All this come from a table. So good, so far.
I followed the idea given at
Now after submission, I tried to use the Split() function to capture the selected items in the list box. But since Request.Form("listbox1" will get me only numeric values delimited by commas, Spilt function doesn't work for me. It requires a string to be split. So what is the workaround
So how to go about it ? What is the best method to tackle this challenge?
Thanks in Advance.
RR.
I followed the idea given at
Now after submission, I tried to use the Split() function to capture the selected items in the list box. But since Request.Form("listbox1" will get me only numeric values delimited by commas, Spilt function doesn't work for me. It requires a string to be split. So what is the workaround
So how to go about it ? What is the best method to tackle this challenge?
Thanks in Advance.
RR.