How do you inject HTML to a server control?
I'm creating a calendar control and have some javascript/css that go with it.
In addition, I have some html code that gets generated with the proper ClientIDs that work with the JS/CSS and I would like to inject this to where the "server" control is used.
For example:
<MyUC:UC1 ID="someUC" runat="server" />
Using LiteralControls/RegisterClientScriptBlock for including the CSS/JS but was wondering about HTML injection to the body.
This would render as the control I've built PLUS the CSS/JSS/HTML that would go with it.
I guess I can generate the dom elements within the javascript include, but I was wondering how I could do it from the server side.