Posts

Showing posts from December 28, 2014

How to add enum properties to a ASP.NET Composite Control

        public enum CommandType         {             Text,             StoredProcedure         }                 [ Category ( "Custom" )]         [ DefaultValue ( CommandType .Text)]         [ Localizable ( true )]         public CommandType OracleCommandType         {             get             {                 object obj = ViewState[ " OracleCommandType " ];                 return obj == null ? CommandType .Text : ( CommandType )obj;             }             set             {                 ViewState[ "OracleCommandType" ] = value ;             }         }