Hi,
I am trying to display image, which is dynamically generated on client side with Silverlight, in a new browser window. This is my javascript function:
function PrintImage(img)
{
var newWin = window.open();
var locImg = new Image();
locImg = img;
newWin.document.write("<img src=" + locImg + "/>");
}
img var is a parameter of c# type BitmapImage. Unfortunately I am newbie with javascript. Thanks for replies.