I am very exited to find out how to do this.
I have created 10 custom webusercontrols which is meant to be used on several custom sites on my website etc. and I want to find out how I can make a directory which will work the same as the asp.net.
At the moment I have to register the webusercontrol at the top of the page like this:
<%@ Register TagPrefix="prefix" TagName="UserControl" Src="Source" %>
How do I create a directory that contains all of my webusercontrols, so I only have to register the assembly and can use the prefix and then the intellisense will appear?
<MyPrefix:'list of my controls' />