FillTagTypeTable Method

Override this method and use the Add method to add tags.

Syntax

Visual Basic MustOverride  Protected   Sub 
FillTagTypeTable( )
C# protected   abstract void 
FillTagTypeTable( );
Managed C++ protected:   virtual void 
FillTagTypeTable( ) = 0;
JScript protected   abstract function
FillTagTypeTable( );

Return Value

No return value.

Example

In the following example, replace sTagName with the name of the tag you are adding and oTagType with its data type.


protected override void FillTagTypeTable()
{
    Add("sTagName", typeof(oTagType));
}

Applies To

FilterControlBuilder

See Also

Internet Explorer WebControls