N
Nick Stansbury
Hi,
Recently upgraded to VS 2005 from 2003. Started rebuilding an asp.net app
from scratch. Not using projects (not sure at this point whether I like or
hate this). I've finished redeveloping all of our custom controls (see below
for the declareation). Our custom controls are in .vb files in the App_code
directory, along with all our other classes not in a control project or
anything like that.
I can't seem to find a way to add our custom controls to the toolbox. I've
tried add/remove items, but as there isn't a DLL to navigate to, I can't add
them that way. How do I do it?
Also - people keep talking about user controls *automatically* being added
into a "My User Controls" section of the toolbox. This isn't happening
either.
Any suggestions?
Thanks
Nick
Example custom control:
<Designer(GetType(MyNamespace.MyDesigner))> _
Public Class ThreadedDropDownList
Inherits WebControl
Implements INamingContainer
....
End Class
Recently upgraded to VS 2005 from 2003. Started rebuilding an asp.net app
from scratch. Not using projects (not sure at this point whether I like or
hate this). I've finished redeveloping all of our custom controls (see below
for the declareation). Our custom controls are in .vb files in the App_code
directory, along with all our other classes not in a control project or
anything like that.
I can't seem to find a way to add our custom controls to the toolbox. I've
tried add/remove items, but as there isn't a DLL to navigate to, I can't add
them that way. How do I do it?
Also - people keep talking about user controls *automatically* being added
into a "My User Controls" section of the toolbox. This isn't happening
either.
Any suggestions?
Thanks
Nick
Example custom control:
<Designer(GetType(MyNamespace.MyDesigner))> _
Public Class ThreadedDropDownList
Inherits WebControl
Implements INamingContainer
....
End Class