I have a button on a page with a Repeater and an ObjectDataSource. To give credit where credit is due, the Repeater's paging functionality is courtesy of ScottGu. (However, I'm using ASP.NET 4.0 and SQL Server 2008, as opposed to ASP.NET 2.0 and SQL Server 2005.)
Anyway, in the button's click event, I need to access the Text property of a Label that's inside the Repeater because it's used as an input parameter in a stored procedure. I'm getting a NullReferenceException when trying to access the Label's Text property. I have researched this error and have tried a few different solutions (involving FindControl and the Repeater's ItemDataBound event), but I haven't been able to get it to work. Any suggestions, in VB or C#, would be greatly appreciated. The code is below.
somepage.aspx
<asp:Repeater ID="rptText" runat="server" DataSourceID="tbsDataSource">
<HeaderTemplate>
<table width="100%" cellspacing="1">
</HeaderTemplate>
<ItemTemplate>
<%-- some rows removed for brevity --%>
<tr>
<td><asp:Label
View Complete Post