Hi
I have converted MVC application into exe file.After converting to exe following code:
var divContent=$("#DivPrintPage").html();
var WinPrint =window.open('', '', 'letf=100,top=100,width=240,height=600');
WinPrint.document.write("somecontent");
New window is opening in exe but it is opening as blank .WinPrint.document.write is not working.How can i fix this issue ,plz suggest some way.
Thanks
Prachi Kulkarni