| 12345678910111213141516171819202122232425262728 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: PlaceHolder
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.ComponentModel;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- [ControlBuilder(typeof(PlaceHolderControlBuilder))]
- public class PlaceHolder : Control
- {
- public PlaceHolder(): base()
- {
- }
- }
- }
|