DataBindingBuilder.cs 444 B

123456789101112131415161718192021222324
  1. //
  2. // System.Web.UI.DataBindingBuilder
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2003 Ximian, Inc. (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Web.Compilation;
  11. namespace System.Web.UI
  12. {
  13. sealed class DataBindingBuilder : CodeBuilder
  14. {
  15. public DataBindingBuilder (string code, ILocation location)
  16. : base (code, false, location)
  17. {
  18. SetControlType (typeof (DataBoundLiteralControl));
  19. }
  20. }
  21. }