What is the difference between Databind and Expression tags?

Posted by NanoTutor | Wednesday, February 18, 2009 | | 0 comments »

link source : www.pradoframework.com
Expression tags run at the PreRender stage, which is before controls like TRepeater run.

Databind tags load their value at every databinding instance (e.g. each time TRepeater loads a data item). Indiscriminate use of Databind tags will work properly but potentially lower application performance

0 comments