suresh kumar

suresh kumar

  • NA
  • 36
  • 15.4k

Printer not woking from IIS WEB SERVER

Jul 21 2016 7:58 AM
Hi,
 
               The below code printer code not working from IIS Web Server.please any one give me answer.
 
ProcessStartInfo info = new ProcessStartInfo();
info.Verb = "print";
info.FileName = file.FullName;
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process p = new Process();
p.StartInfo = info;
p.Start();
 

Answers (1)