About this Blog

Microsoft Dynamic CRM
Brandon Kelly

Brandon Kelly
Read Full Bio »

Subscribe to receive updates

Follow Tribridge

Follow us on Twitter, add us to your LinkedIn network, become a fan on Facebook, watch us on YouTube or subscribe to our blogs

Blog Postings

  • Solving OutOfMemoryException errors when attempting to attach large Base64 encoded content into CRM annotations

    Brandon Kelly | Apr 29, 2011
    Microsoft Dynamics CRM (versions 3-2011) has shipped with functionality that allows developers and end users to attach files to annotations (notes) on any entity.  When doing so, files are stored in CRM’s native store as a Base64 encoded string.  If your usage scenario involves .Net code, the easiest way to encode and decode into Base64 format is to use System.Convert.ToBase64String and System.Convert.FromBase64String.    On larger byte ...
  • Dynamically loaded Javascript in CRM 4.0

    Brandon Kelly | Feb 23, 2011
    Dynamically Loaded Javascript in CRM 4.0 The most common way to customize form UI in Microsoft Dynamics CRM 4.0 is to use Javascript.  Simple customizations can be afforded through CRM’s built in Javascript editor, but what if you want to reference outside libraries (say jQuery) or publish your Javascript customizations as part of an ISV package?  This solution enables this behavior by dynamically loading external ...