tags:

views:

10

answers:

1

I have a search page get data from two sources:

1- my data base

2- web service function

How to put this two data sources in my list view?

+1  A: 

You cannot assign two datasources to a ListView. Therefore it is your responsibility to colate the two sources of data into on result set.

I suggest you use something like the objectdatasource to return your result sets and merge the results before returning the final results to the listview.

Hope this helps.

madcapnmckay