NumericPagerField::CurrentPageLabelCssClass Property

 

Gets or sets the cascading style sheet (CSS) class that is used to style the current page number.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
property String^ CurrentPageLabelCssClass {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The CSS class that is used to style the current page number in the browser. The default is an empty string (""), which indicates that the CurrentPageLabelCssClass property is not set.

Use the CurrentPageLabelCssClass property to specify the CSS class that is used to style the Label object that represents the number of the page that is currently selected. The CurrentPageLabelCssClass property is always rendered as a class attribute, regardless of the browser.

System_CAPS_noteNote

On browsers that do not support CSS, setting the CurrentPageLabelCssClass property has no effect.

The value of this property is stored in view state.

The following example shows how to specify a CSS class to style the current page number in the NumericPagerField object of a DataPager control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.5
Return to top
Show: