I am using asp.net and vb.net. How can I refer to my web user control instance ServiceForm? Do I need an ID or name somewhere?
Should it be My.Setting.ServiceForm or something like that?
For Each li As ListItem In cblServices.Items
If li.Selected Then
PnlServiceForms.Controls.Add(Page.LoadControl("ServiceForm.ascx"))
'Access this instance of ServiceForm.aspx control - How? - ServiceForm1, ServiceForm2, etc?
End If
Next