There's ASP.NET Web service which returns the database recordsets to ASP.NET web application.
The question is: what is the best way to minimize the network traffic ?
-- Use DataTable(DataSet) directly
-- Save DataTable to xml and pass the xml string to the client
-- Return recordset as array of objects.
Thanks in advance.
The question is: what is the best way to minimize the network traffic ?
-- Use DataTable(DataSet) directly
-- Save DataTable to xml and pass the xml string to the client
-- Return recordset as array of objects.
Thanks in advance.