HtmlPageAdapter.cs 763 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /**
  2. * Project : Mono
  3. * Namespace : System.Web.UI.MobileControls.Adapters
  4. * Class : HtmlPageAdapter
  5. * Author : Gaurav Vaish
  6. *
  7. * Copyright : 2003 with Gaurav Vaish, and with
  8. * Ximian Inc
  9. */
  10. using System;
  11. using System.Web.Mobile;
  12. namespace System.Web.UI.MobileControls.Adapters
  13. {
  14. public class HtmlPageAdapter : HtmlControlAdapter
  15. {
  16. [MonoTODO]
  17. public bool PersistCookielessData
  18. {
  19. get
  20. {
  21. throw new NotImplementedException();
  22. }
  23. set
  24. {
  25. throw new NotImplementedException();
  26. }
  27. }
  28. public virtual void RenderPostBackEvent(HtmlMobileTextWriter writer,
  29. string target, string argument)
  30. {
  31. writer.Write("javascript:__doPostBack('" + target + "','" + argument + "')");
  32. }
  33. }
  34. }