Adds a script file to the list of includes for the ShareItLibrary.
public static void AddScriptInclude(string script, HtmlHelper helper,
bool noLibraryPath = false)
public static void AddScriptInclude(string[] script, HtmlHelper helper,
bool noLibraryPath = false)
public static void AddScriptInclude(string script, dynamic viewBag,
bool noLibraryPath = false)
The name of the script file to add the header of the page.
An array of script files to add the header of the page.
The current HtmlHelper context.
The current HtmlHelper.ViewBag context.
Choose not to use the ShareItLibrary default library path.
SiUtil.AddScriptInclude("MyScriptFile.js", helper);