T

A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z 

  • template
    In ASP.NET: A declarative page fragment that is used to provide a visual interface for a templated ASP.NET server control. A template contains presentation elements that include literal text, HTML, and data-binding expressions, as well as declarative syntax elements that represent ASP.NET server controls. A template can be persisted as a text file with an .ascx extension. See also: ASP.NET server control, templated control.

    In ASP.NET mobile controls: A markup language construct associated with controls and created with the <DeviceSpecific> and <Choice> tags. It is used to customize output for specific types of hardware devices. See also: templated control, template set.

  • templated control
    In ASP.NET: An ASP.NET server control that does not itself provide a visual interface but allows its users (page developers) to supply templates that provide a visual interface. When the ASP.NET page parser encounters a templated control, it parses the control's template and dynamically creates child controls that supply the visual interface. The Repeater and DataList ASP.NET server controls are templated controls. The DataGrid control is not strictly a templated control, but uses templates to customize its user interface. See also: ASP.NET server control, template.

    In ASP.NET mobile controls: A control that supports one or more templates. A single templated control can refer to multiple sets of templates, where each template set is defined through device-specific criteria. See also: template, template set.

  • template set
    In ASP.NET mobile controls: A collection of templates associated with a templated control. See also: template, templated control.

  • text writer
    In ASP.NET mobile controls: A mechanism that allows device adapters to write their output through an object. A text writer object is created from the TextWriter base class. See also: device adapter.

  • tracing
    A form of debugging, using the Trace class, that tracks and presents execution details of a running application. Tracing is available to any ASP.NET class that implements a Trace property.

  • type system
    See definition for common type system.