Override the render function of the SharePoint content editor WebPart
Had you come across on Bug of the SharePoint Content Editor WebPart So there is interesting problem If using external links and internal links – you will get the bug An example to the bug: Try This - Internal links, external links and internal links again What we get is the first two links work correctly, but the third link will link us to link the internal server name we have created the site. This is big bug for CEWP. Hope you understood the bug. How do we solve it? You can not inherit the WebPart - then shall we do? Built Control Adapter performs render the code. Create a small project in Visual Studio that contains the following code using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Web.UI; using Microsoft.SharePoint; using Microsoft.SharePoint.Administration; namespace Roi.Moss.ControlAdapter.ContentEditorWebPart { public class Conte...