locked
Asp.net web control RRS feed

  • Question

  • Hi,

    I'm going to have a web control.in this control I have a gridview and I want to have a editor peopery for grid view collection,

    and with this propery can add column to grid view data bounded.I need help?

    I'v written :

            private List<DataColumn> _columns;

            [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
            [PersistenceMode(PersistenceMode.InnerProperty)]
            [NotifyParentProperty(true)]

            public List<DataColumn> Columns
            {
                get
                {
                    if (null == _columns)
                        _columns = new List<DataColumn>();
                    return _columns;
                }
            }

     

     

     

    but I want a property like grid view collection.

    please help me.

    thx.

    • Moved by Martin_Xie Monday, October 31, 2011 4:01 AM Redirect to ASP.Net Forum for better support. (From:Visual C# Language)
    Monday, October 24, 2011 12:44 PM

Answers

All replies