I have a docx document, which I want to print from code behind in C#. I had gone through forums and few say, its not possible, i will have to use JavaScript. How to specify file in JavaScript, print code? So far I have done in code behind direct print.
Process process = new Process();
process.StartInfo.FileName = file;
process.StartInfo.Verb = "print";
process.Start();
//process.Kill();