Hello everyone,
I am using ADO.Net + C# + VSTS 2008 + SQL Server 2005. I bind an ADO.Net DataTable to a real database table, and then bind the DataTable to a grid view on ASP.Net page. My question is, if I want to do some data manipulation work (very simple, like add some prefix to some character data type rows, multiple integer data type rows by 100 or something) and display in grid view the manipulated data on page. What is the suggested best practices solution to do data manipulation? I cannot change the data inside database.
thanks in advance, George