Asp.Net Web User Control Extension
I have a Web User Control. I want to use this control in other web applications, I dont want to expose the code of my web user control. If modification is required 开发者_运维百科in web user control it can be extended in respective web application.
Is it possible to extend web user control. Any other alternative to this.
There are a number of things that you cannont change in a webpart if you do not have the code.
There are a few approaches that you could try:
- Use Managed Extensibility Framework
- Try creating a new User Control and inheriting from the existing (this only inherits the code behide)
精彩评论