IStyleSheet.CreateStyleRule Method (Style, IUrlResolutionService, String)

 

When implemented by a class, creates a style rule for the specified document language element type, or selector.

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

abstract CreateStyleRule : 
        style:Style *
        urlResolver:IUrlResolutionService *
        selector:string -> unit

Parameters

style
Type: System.Web.UI.WebControls.Style

The style rule to be added to the embedded style sheet.

urlResolver
Type: System.Web.UI.IUrlResolutionService

An IUrlResolutionService-implemented object that contains the context information for the current location (URL).

selector
Type: System.String

The part of the HTML page affected by the style.

The CreateStyleRule method creates a style rule for the specified selector. Multiple style rules can be created for the same selector.

If urlResolver is set to null, the URL of the current Page instance is used.

System_CAPS_noteNote

Adding or modifying styles or style rules programmatically during asynchronous postbacks is not supported. When you add AJAX capabilities to an ASP.NET Web page, asynchronous postbacks update regions of the page without updating the whole page. For more information, see Microsoft Ajax Overview.

The following code example uses the Header implementation of IStyleSheet to demonstrate defining a new Style object, bodyStyle. Then bodyStyle is added to the current URL by calling CreateStyleRule.

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

.NET Framework
Available since 2.0
Return to top
Show: