Click here to Skip to main content
15,881,204 members

Comments by Eon Malherbe (Top 3 by date)

Eon Malherbe 31-Oct-13 1:40am View    
The {x} is a placeholder used in string.Format. {0} is the first parameter, {1} the second etc. For example: string.Format("the {0} car drove {1} mph", "red", 30) will result in "the red car drove 30 mph".
Eon Malherbe 11-Sep-13 3:22am View    
e.Item.DataItem in the call will contain the DataRow object relevant to that row. You don't need to run an index over the data table or repeater.
Eon Malherbe 11-Sep-13 2:34am View    
If it returns false then you are currently databinding to the Header or Footer, and won't contain the control you are trying to find. The databinding event is called for all the repeater types including header and footer.