1

I'm considering using an ObjectDataSource as an intermediate between my page controls and my data access layer & object model. Traditionally I have manually created the object and populate it via a series of findcontrol statements when I need to insert/update data in the database. I'm hoping that I can use the ObjectDataSource to marshal data between my object and my controls, eliminating that manual code, as long as the ObjectDataSource doesn't come with a lot of overhead.

I noticed the EnableCaching property, where does the caching occure? is it in view state?

skaffman
  • 398,947
  • 96
  • 818
  • 769
Jeremy
  • 44,950
  • 68
  • 206
  • 332

1 Answers1

4

It caches in the Global Cache: ObjectDataSource.EnableCaching

Josh
  • 44,706
  • 7
  • 102
  • 124