从处理程序动态加载用户控件并传递属性值
我正在尝试使用以下示例加载用户控件: 通过 jQuery 加载 ascx
该示例使用 Page.LoadControl(String)。我想加载一个具有自定义属性的控件,有没有办法使用此方法传递它们?
提前致谢。
PS,控件和处理程序都是新的,所以我可以用不同的方法重新开始。
编辑
好的,所以我开始在 App_Code 中创建一个类,并使我的控件继承它。
在基类中将所有属性创建为 MustInherit。然后将LoadControl方法的返回值强制转换为BaseClass类型,所有属性都可用。
我不确定这是否是最干净的解决方案。
I'm trying to load a user control using the following example:
Load ascx via jQuery
The example is using Page.LoadControl(String). I'd like to load a control that has custom properties, is there a way to pass them using this method?
Thanks in advance.
PS, both the control and handler are new so I am able to start over with a different approach.
EDIT
OK, so I went about creating a class in the App_Code, and made my control inherit from it.
Created all properties as MustInherit in the base class. And then casted the return from LoadControl method to the BaseClass type, all properties are available.
I'm not sure if it's the cleanest solution or not though.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
动态加载 Webcontrol 并传递值
http://www.wikipad.info/Details.aspx?ID =71
Loading Webcontrol dynamically and pass value
http://www.wikipad.info/Details.aspx?ID=71