MobilePage.cs 485 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls
  4. * Class : MobilePage
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System.Web.UI;
  11. using System.Web.Mobile;
  12. namespace System.Web.UI.MobileControls
  13. {
  14. public class MobilePage : Page
  15. {
  16. public MobilePage()
  17. {
  18. }
  19. public virtual IControlAdapter GetControlAdapter(MobileControl control)
  20. {
  21. throw new NotImplementedException();
  22. }
  23. }
  24. }