Requests a script to be added to the page

Namespace: DotNetNuke.Framework.JavaScriptLibraries
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public static void RequestRegistration(
	string jsname,
	Version version,
	SpecificVersion specific
)
Visual Basic
Public Shared Sub RequestRegistration ( 
	jsname As String,
	version As Version,
	specific As SpecificVersion
)

Parameters

jsname
Type: System..::..String
the library name
version
Type: System..::..Version
the library's version
specific
Type: DotNetNuke.Framework.JavaScriptLibraries..::..SpecificVersion
how much of the version to pay attention to. When Latest is passed, ignore the version. When LatestMajor is passed, match the major version. When LatestMinor is passed, match the major and minor versions. When Exact is passed, match all parts of the version.

See Also