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