I have a session that contains a datatable, as well as a function that returns a datatable. I need to add these two. How can i do this?
The following code should be replaced with the correct code.
Session("Table")=Session("Table")+obj.GetCustomer()
... where obj is a business-level object.
The + sign cannot be used to add these two, so how can I do this?
source
share