MobilePage.cs 717 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. public Form ActiveForm
  24. {
  25. get
  26. {
  27. throw new NotImplementedException();
  28. }
  29. set
  30. {
  31. throw new NotImplementedException();
  32. }
  33. }
  34. public Form GetForm(string id)
  35. {
  36. throw new NotImplementedException();
  37. }
  38. }
  39. }