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();