Posted on: 2/19/2015 7:12:39 AM | Views : 578

hi,
i have created custom control in my page, i used windows forms and placeholders. My page is propertly displayed but my custom control is not displayed in the placeholder where it is written. It is rendered just outside of it. I inherit control from GRIDVIEW and when i use gridview on a same spot, it is rendered correctly. What am i missing for working this properly ?
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace DHControls { [DefaultProperty("Text")] [ToolboxData("<{0}:ServerControl1 runat=server></{0}:ServerControl1>")] public class TableKategorie : GridView { [Bindable(true)] [Category("Appearance")] [DefaultValue(" ...

Go to the complete details ...