R – How to make usercontrol available to multiple projects

asp.netuser-controls

I have a set of UserControls in a ASP.NET website that I would like to share to multiple website. But it seems we are unable to create a class library with UserControls in it with the ascx file. While MSDN suggest building a Web Control, I Would rather find a way to share the existent controls instead of destroying them to create new web controls.

Is there any way of creating a library of UserControls?

Thanks

Best Answer

Here is one way of doing it:

Creating and Using User Control Libraries.