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