> Display names I guess is what I mean. Submitting to the webservice via
> code yes.
[quoted text clipped - 32 lines]
>>>
>>> Ideas?
Sorry, Chris. Things get hectic sometimes and I'm not able to respond as
quickly as I would like to.
I had a quick look at the links. What you need to do is retrieve the value
of the multi select list box. This will contain the selected values separated
by commas. Use the Split() function to split those values up and put them
into an array (one of the articles show how to do this). Once you've done
this, you can loop through the array. For each item, you must them do a
lookup in the secondary data source that is bound to the multi-select list
box and use the value of the item to retrieve its display name. You can
retrieve the secondary data source using
DataSources[<sec_ds_name>].CreateNavigator() and then use a SelectSingleNode
with an XPath expression that contains a filter on the value to find the
display name.
---
S.Y.M. Wong-A-Ton
> Did this help?
> > Display names I guess is what I mean. Submitting to the webservice via
[quoted text clipped - 33 lines]
> >>>
> >>> Ideas?