I have this code: namespace Test.SharePoint.WebControls { public class MyCustomCalendar : RichImageField { protected override void Render(HtmlTextWriter output) { base.Render(output); } } } If i override some other metod like RenderForDisplay it works, but then I cant do what I want with the code. When...