G
George Durzi
I'm using exchange WebDAV to retrieve a the Xml of user's contact list, then
convert it to a DataSet, then display it in a DataGrid on my webform. The
problem is that because I'm going over HTTP, the operation can take up to 15
seconds for people with many contacts in their contact lists.
I'd like to do one of two things:
- Show some "processing" verbage while the Xml is being fetched and
converted into a DataSet. PROBLEM: I have yet to see a good example of this
being done in codebehind.
- Store the DataSet in a Session variable. The first hit would be slow, but
subsequent hits use the DataSet in the Session
Any thoughts or recommendations?
convert it to a DataSet, then display it in a DataGrid on my webform. The
problem is that because I'm going over HTTP, the operation can take up to 15
seconds for people with many contacts in their contact lists.
I'd like to do one of two things:
- Show some "processing" verbage while the Xml is being fetched and
converted into a DataSet. PROBLEM: I have yet to see a good example of this
being done in codebehind.
- Store the DataSet in a Session variable. The first hit would be slow, but
subsequent hits use the DataSet in the Session
Any thoughts or recommendations?