I have an ASP.net control that inherits from UserControl
:
File 1:
public partial class Controls_AllocationDuplicate : S
You try to make a custom control and not a user control in this case you can't use ascx file to hold your design but need to design them pragmatically.
Try inherting from WebControl,then use Register instead of Control. Similar to this: http://www.codeproject.com/Articles/2748/Building-an-ASP-NET-custom-web-control-a-textbox-a