I am working with a fairly complex 3 step asp.net wizard.
Without going into volumes of detail about the project, I am stuck at a certain point in the development where the user control collections I'm populating dynamically aren't behaving the way they are supposed to.
So here we go:
In the final step of my wizard, I am populating a custom user control called _summaryControl.ascx multiple times. Here's the .ascx contents:
<%@ Control ClassName="_summaryReusable" Language="C#" AutoEventWireup="true" CodeBehind="_summaryReusable.ascx.cs" Inherits="LTC_My_Quality_Reporting.forms._compliance.controls._summaryReusable" %>
<%-- REUSABLE SUMMARY CONTROLS
FILLS OUT SUMMARY FIELDS IN FINAL STEP OF THE FORM WIZARD CONTROL
--%>
<%-- Summary type label --%>
<asp:Label ID="Label1"
runat="server"
...
Go to the complete details ...