This documentation is archived and is not being maintained.
PageParserFilter::ProcessDataBindingAttribute Method
Visual Studio 2010
Returns a value that indicates whether the parser filter processes a data binding expression in an attribute.
Assembly: System.Web (in System.Web.dll)
public: virtual bool ProcessDataBindingAttribute( String^ controlId, String^ name, String^ value )
Parameters
- controlId
- Type: System::String
The ID of the control that contains the data binding attribute.
- name
- Type: System::String
The name of the attribute with the data binding expression.
- value
- Type: System::String
The data binding expression.
Return Value
Type: System::Booleantrue if the parser filter processes data binding attributes; otherwise, false. The default is false.
You can override the ProcessDataBindingAttribute method to allow the parser filter to process data binding expressions when implementing a custom PageParserFilter class. An example of a data binding expression used with an attribute is <%# expression %>.
ProcessDataBindingAttribute is introduced in the .NET Framework version 3.5. For more information, see .NET Framework Versions and Dependencies.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: