I'm developing a custom control which is a composition of tables and buttons. I also have a CSS that defines the styles for these. The Control is under the class CompositeControl, under namespace MyControls and the definition of the class is in a class file CompositeControl.cs and the dll file generated is named MyControls.dll
Also, the stylesheet is under the name styles.css and is in the same folder as the CompositeControl.cs
For each control (Button, TableCell, etc..), I have specified the CssClass property.
When I add this control to my ASP.NET webpage and check the html source when run at localhost, I see all the control tags have got the class attribute correctly set, but the source doesn't include the < link> tag which is necessary for including an external stylesheet. Could someone tell me what more do I need to do to get this working?
Thanks