I've a scenario where I want to calculate the no of records in repeater which is in user control and display the count in a literal which is in page(ex default.aspx). How can I achieve this ? I don't wanna use public properties....i want to do it by creating my own custom event.

Any help or suggestion would be highly appreciated.

Thanks, Sumit Arora

link|improve this question

50% accept rate
why not properties? – onof Jul 12 '10 at 11:30
How can I get the value of a property which is in user control on page load of a page? – Sumit Jul 12 '10 at 11:33
feedback

1 Answer

up vote 1 down vote accepted

Create a property in the user control:

public int NumberOfRecords { get { return myRepeater.Items.Count; } }

Then, in the Page_Load:

countLabel.Text = string.Format("Number of records: {0}", myUserControl.NumberOfRecords);
link|improve this answer
Well the problem in this case is that the page load of Page will be called first and then the page load of user control will be called....so how can I get the value of the property in the page load of the page?It won't give me any record. – Sumit Jul 12 '10 at 12:27
You could force the databind in the page_load, before calling the property. Or put the countLabel.Text = ... in the Page_OnPreRender. – onof Jul 12 '10 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.