Dynamically Loading a UserControl with LoadControl Method (Type, object[])

后端 未结 3 1862
庸人自扰
庸人自扰 2020-12-10 01:36

I\'m trying to return the html representation of a user/server control through a page method. It works when I call the overload which takes the virtual path to the user cont

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-10 01:51

    On the MSDN page for LoadControl there is this comment at the bottom:

    Description
    A page that loads a user control using the Page.LoadControl(Type, Object[]) does not seem to create its children added in the ascx file. Using Page.LoadControl(String) works as expected.

    Comments
    Thank you for submitting this issue. We're investigating and will provide an update on status when we have more information.

    -The Web Platform & Tools Team
    Posted by Microsoft on 8/06/2005 at 11:08 AM
    This is by-design since the type "TestUC" is actually the base type used by the partial class, it does not contain the proper code to instantiate TextBox1 reference, which is actually defined in the derived type. There are two workarounds: 1. Use LoadControl("TestControl.ascx"), for all practical, this behaves identically to LoadControl(type) but it instantiates the derived type, which knows how to instantiate TextBox1. 2. Use a single file page and adds <%@ Reference %> directive to the page to reference the user control, and assign a classname to the ascx page. Then it's safe to use LoadControl(type)

    Thanks for reporting the issue.
    Web Platform and Tools Team. Posted by Microsoft on 14/06/2005 at 6:31 PM

提交回复
热议问题