Grazie, ho trovato la funzione, createLink il problema lo ho:
var a = FCK.Selection.MoveToAncestorNode('A') ;
if (a) {
// link present, manipulate it
FCK.Selection.SelectNode(a);
//a.href= linkInformation["href"];
a = FCK.CreateLink(linkInformation["href"]);
} else {
// new link, create it
a = FCK.CreateLink(linkInformation["href"]);
}
Stampando il valore di a è null, può essere questo che crea problemi?Come potrei rimediare?Grazie