Click here to Skip to main content
15,894,017 members

Comments by Abhilask kumar (Top 71 by date)

Abhilask kumar 17-Nov-18 20:20pm View    
Because when i replace live js with development js then worked fine. so i guess.
Abhilask kumar 17-Nov-18 20:14pm View    
This is function which create js bundle dynamically.

public string register_JSBundle(string BundleName, string BundleJS, string Delimiter = ")E(", bool bEnableOptimizations = true)
{
if (BundleName.IndexOf("~/") < 0) BundleName = "~/" + BundleName;
if (Strings.IsNullOrEmpty(BundleName) || Strings.IsNullOrEmpty(BundleJS)) return BundleName;
Bundle oBundle = null;
try
{
string[] arrBundleJS = BundleJS.Split(new string[] { Delimiter }, StringSplitOptions.None);
BundleTable.Bundles.IgnoreList.Clear();
oBundle = new ScriptBundle(BundleName).Include(arrBundleJS);
if (BundleTable.Bundles.Contains(oBundle))
{ BundleTable.Bundles.Remove(oBundle); }
BundleTable.Bundles.Add(oBundle);
BundleTable.EnableOptimizations = bEnableOptimizations;
}
catch (Exception ex) { set_ErrorInfo(ex.Message, Info.Definition.ErrorSeverity.Warning, "", 10025); }
return BundleName;
}
Abhilask kumar 23-Oct-18 5:54am View    
why deadlock happening?
Abhilask kumar 20-Apr-17 21:30pm View    
I'm not find problem than i ask question. Both's page view here.
Abhilask kumar 31-Dec-16 2:53am View    
yes access database exist in D drive. and i tried from connectionstrings.com. Same thing connect well without password protected database file. Any way to add password in database file from asp.net?