ScriptLink.RegisterScriptAfterUI method (Page, String, Boolean, Boolean)
Registers the specified script file for the specified Web page and localizable and defer values to load after the page user interface (UI) is loaded.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared Sub RegisterScriptAfterUI ( _
page As Page, _
name As String, _
localizable As Boolean, _
defer As Boolean _
)
'Usage
Dim page As Page
Dim name As String
Dim localizable As Boolean
Dim defer As BooleanScriptLink.RegisterScriptAfterUI(page, _
name, localizable, defer)
public static void RegisterScriptAfterUI(
Page page,
string name,
bool localizable,
bool defer
)
Parameters
page
Type: System.Web.UI.PageThe Web page.
name
Type: System.StringA string that contains the name of the script file.
localizable
Type: System.Booleantrue if the script can be localized; otherwise, false.
defer
Type: System.Booleantrue to defer downloading and parsing of script files, including the core.js file, until after other elements of the page are downloaded; otherwise, false.