I am able to get the all items in the listbox with this code:
var SelServers = $("#<%=SelServers.ClientID%>");
var ServerListStg = SelServers.text();
But the content is concatenated with no way to separate them. Example if the Listbox has following options:
then the returned value is A1A2A3
How can I get in csv format A1,A2,A3 ?
Please help.