What is ItemCommand and ItemDatabound of a Data Representation Control?
asp.net, c#, repeater
Solution
ItemDataBound is an event that fires once on your server for every record bound to the control. ItemCommand is the event that will fire if you click a command button that is associated with the record.
Problem
Please Explain with example ItemCommand and ItemDatabound of a Data Representation Control.