private void ReloadScripts()
{
string[] jQueryScripts = {
"JQuery/jquery.bgiframe.js"
, "JQuery/jquery-ui-1.7.2.custom.min.js"};
string linkCSS = "";
ScriptManager.RegisterClientScriptBlock(this, Page.GetType(), "uniquekey0", linkCSS, true);
ScriptManager.RegisterClientScriptInclude(this, Page.GetType(), "uniquekey1", jQueryScripts[0]);
ScriptManager.RegisterClientScriptInclude(this, Page.GetType(), "uniquekey2", jQueryScripts[1]);
ScriptManager.RegisterStartupScript(this, Page.GetType(), "uniquekey3", BOL.DatePickerScript(), true);
}
---------------View Source of page---------------------------------
|