//
        //  Page class constructor
        //
        public cHistoricoPeatones_search(AspNetMaker9_ControlVehicular APage)
        {
            m_ParentPage = APage;
            m_Page = this;
            m_PageID = "search";
            m_PageObjName = "HistoricoPeatones_search";
            m_PageObjTypeName = "cHistoricoPeatones_search";

            // Initialize language object
            if (Language == null)
                Language = new cLanguage(this);

            // Initialize table object
            if (HistoricoPeatones == null)
                HistoricoPeatones = new cHistoricoPeatones(this);
            if (Usuarios == null)
                Usuarios = new cUsuarios(this);

            // Table
            m_TableName = "HistoricoPeatones";
            m_Table = HistoricoPeatones;
            CurrentTable = HistoricoPeatones;

            //CurrentTableType = HistoricoPeatones.GetType();
            // Initialize URLs
            // Connect to database

            if (Conn == null)
                Conn = new cConnection();
        }
        //
        //  Page class constructor
        //
        public cHistoricoPeatones_list(AspNetMaker9_ControlVehicular APage)
        {
            m_ParentPage = APage;
            m_Page = this;
            m_PageID = "list";
            m_PageObjName = "HistoricoPeatones_list";
            m_PageObjTypeName = "cHistoricoPeatones_list";

            // Initialize language object
            if (Language == null)
                Language = new cLanguage(this);

            // Initialize table object
            if (HistoricoPeatones == null)
                HistoricoPeatones = new cHistoricoPeatones(this);
            if (Usuarios == null)
                Usuarios = new cUsuarios(this);

            // Table
            m_TableName = "HistoricoPeatones";
            m_Table = HistoricoPeatones;
            CurrentTable = HistoricoPeatones;

            //CurrentTableType = HistoricoPeatones.GetType();
            // Initialize URLs

            ExportPrintUrl = PageUrl + "export=print";
            ExportExcelUrl = PageUrl + "export=excel";
            ExportWordUrl = PageUrl + "export=word";
            ExportHtmlUrl = PageUrl + "export=html";
            ExportXmlUrl = PageUrl + "export=xml";
            ExportCsvUrl = PageUrl + "export=csv";
            ExportPdfUrl = PageUrl + "export=pdf";
            AddUrl = "HistoricoPeatonesadd.aspx";
            InlineAddUrl = PageUrl + "a=add";
            GridAddUrl = PageUrl + "a=gridadd";
            GridEditUrl = PageUrl + "a=gridedit";
            MultiDeleteUrl = "HistoricoPeatonesdelete.aspx";
            MultiUpdateUrl = "HistoricoPeatonesupdate.aspx";

            // Connect to database
            if (Conn == null)
                Conn = new cConnection();

            // Initialize list options
            ListOptions = new cListOptions();

            // Export options
            ExportOptions = new cListOptions();
            ExportOptions.Tag = "span";
            ExportOptions.Separator = "  ";
        }