Ejemplo n.º 1
0
        private void DisplayDataEntryRepeater(String entryId)
        {
            if (Utils.IsNumeric(entryId) && entryId != "0")
            {
                var clientData = new ClientData(PortalId, Convert.ToInt32(entryId));

                clientData.OutputDebugFile("debug_client.xml");

                //render the detail page
                base.DoDetail(rpData, clientData.GetInfo());

            }
        }