VS2008项目中的System.Web.UI.WebControls.WebControl
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下这个示例:创建和使用用户控件库
你想要什么 是:
要完成的 Register 指令提供到控件的 ascx 源页面的链接,并提供 TagPrefix 和 TagName 来引用页面中的控件。 此外,您还可以设置为用户控件提供的任何属性(如果有)。
如果这只是您想要从程序集中引用的用户控件,请查看此链接:为 .NET 程序集指定一个强名称
Have a look at this example: Creating and Using User Control Libraries
What you want to accomplish is:
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