VS2008项目中的System.Web.UI.WebControls.WebControl

发布于 2024-07-07 09:40:57 字数 124 浏览 6 评论 0原文

我在 VS2008 中创建了一个网站项目,并在 appcode 文件夹中创建了一个派生自 System.Web.UI.WebControls.WebControl 的类。 我需要在我的一个网络表单中使用此控件。 我不知道该怎么做。

I have created a website project in VS2008 and in the appcode folder I have created a class deriving from System.Web.UI.WebControls.WebControl. I need to use this control in one of my webforms. I can't figure out how to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绿光 2024-07-14 09:40:57

看一下这个示例:创建和使用用户控件库

你想要什么 是:

Resized image from Scott Gu's site to fit StackOverflow.comt

要完成的 Register 指令提供到控件的 ascx 源页面的链接,并提供 TagPrefix 和 TagName 来引用页面中的控件。 此外,您还可以设置为用户控件提供的任何属性(如果有)。

如果这只是您想要从程序集中引用的用户控件,请查看此链接:为 .NET 程序集指定一个强名称

Have a look at this example: Creating and Using User Control Libraries

What you want to accomplish is:

Resized image from Scott Gu's site to fit StackOverflow.comt

Where you have a Register directive to provide a link to the control's ascx source page and providing a TagPrefix and TagName to reference the control in the page. In addition, you could also set any properties you have provided for the user control if you have.

If this is just a user control you want to reference from an assembly Check this link out: Giving a .NET Assembly a Strong Name

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