| 12345678910111213141516171819202122 |
- /**
- * Project : Mono
- * Namespace : System.Web.UI.MobileControls
- * Class : ControlPager
- * Author : Gaurav Vaish
- *
- * Copyright : 2003 with Gaurav Vaish, and with
- * Ximian Inc
- */
- using System.Web.Mobile;
- namespace System.Web.UI.MobileControls
- {
- public class ControlPager
- {
- public ControlPager(Form form, int pageWeight)
- {
- throw new NotImplementedException();
- }
- }
- }
|