| 123456789101112131415161718192021222324252627 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: HyperLinkControlBuilder
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2002)
- */
- namespace System.Web.UI.WebControls
- {
- public class HyperLinkControlBuilder : ControlBuilder
- {
- public HyperLinkControlBuilder(): base()
- {
- }
-
- public override bool AllowWhitespaceLiterals()
- {
- return false;
- }
- }
- }
|