Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to check changes made?
Message
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01186509
Message ID:
01187970
Views:
18
>Hmm, could you please provide any example? I have no idea at all, thanks.

Basically, you can pull your DataTable out of the session object, iterate its columns and compare it to the value in your user interface controls:
DataTable MyDataTable = (DataTable)Session["MyDataTable"];
foreach (DataColumn Column in MyDataTable.Columns)
{
   // Compare the column's value to the corresponding UI control
}
Best Regards,
Kevin McNeish
Eight-Time .NET MVP
VFP and iOS Author, Speaker & Trainer
Oak Leaf Enterprises, Inc.
Chief Architect, MM Framework
http://www.oakleafsd.com
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform