Error :Could not complete the operation due to error c00cee2b
Hi Friends ,
I am Dinesh Chaudhari ,i have got error when i write following line in my wpfe applicatiion by using JavaScript :
var Newcanvas=wpfeControl.createFromXaml(xamlstring);
Error is like Could not complete the operation due toerror c00cee2bSo any one know how to remove this error .plz send me the solution.
For Referance My Code is as follow :
xamlstring="xmlns='http://schemas.microsoft.com/client/2007' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' x:Name='jcan' >";
xamlstring=xamlstring+"<Canvas Width='300' Height='300' Background='Red'>";
xamlstring=xamlstring+"<TextBlock Canvas.Left='30' Canvas.Top='120' Foreground='Blue' FontSize='48 FontStyle=Italic' Text='Dinesh'>";
xamlstring=xamlstring+"</TextBlock>";
xamlstring=xamlstring+"</canvas>";
var wpfeControl=document.getElementById("wpfeControl1");
varNewcanvas=wpfeControl.createFromXaml(xamlstring);

