RepeaterItem.cs 376 B

1234567891011121314151617181920212223
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Class: RepeaterItem
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Implementation: yes
  8. * Status: 40%
  9. *
  10. * (C) Gaurav Vaish (2001)
  11. */
  12. using System;
  13. using System.Web;
  14. using System.Web.UI;
  15. namespace System.Web.UI.WebControls
  16. {
  17. public class RepeaterItem: Control, INamingContainer
  18. {
  19. }
  20. }