从处理程序动态加载用户控件并传递属性值

发布于 2024-11-09 00:52:40 字数 430 浏览 0 评论 0原文

我正在尝试使用以下示例加载用户控件: 通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵山崖 2024-11-16 00:52:40

动态加载 Webcontrol 并传递值

http://www.wikipad.info/Details.aspx?ID =71

Loading Webcontrol dynamically and pass value

http://www.wikipad.info/Details.aspx?ID=71

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文