Within my layout, I have two labels named FixedTotal and TotalPercent, as well as a single row GridView with columns labeled ReferenceID, Percentage, and Amount.
ReferenceID Percentage Amount
-------------- ------------- --------
1 5 1000
My goal is to update the "Percentage" column value of 5 with the text from the TotalPercent label, and to display the "Amount" column value of 1000 in the FixedTotal label. Additionally, I need to verify whether the GridView contains any rows. How can I accomplish this task given that the columns are BoundField Columns?