Two parts to my question:
I need to format my web service responses for display on my web page. Should I use JavaScript to format the responses or given that it’s a .NET web service format the response as HTML and then simply push it down to the client?
If I'm using JavaScript to manipulate the response, what datatypes should I avoid returning from a .NET web service that might not "play nice" with JavaScript?
Thanks for your help.