B
Ben
Hi
I am using this code to dynamically load a user control:
Dim path As String = "topbar_all.ascx"
Dim ctl As UserControl = CType(Page.LoadControl(path), UserControl)
Page.Controls.Add(ctl)
I get this error when i load the control: "The Controls collection cannot be
modified because the control contains code blocks (i.e. <% ... %>). "
But the code does not contain any code blocks.
Any ideas on the problem?
THanks B
I am using this code to dynamically load a user control:
Dim path As String = "topbar_all.ascx"
Dim ctl As UserControl = CType(Page.LoadControl(path), UserControl)
Page.Controls.Add(ctl)
I get this error when i load the control: "The Controls collection cannot be
modified because the control contains code blocks (i.e. <% ... %>). "
But the code does not contain any code blocks.
Any ideas on the problem?
THanks B