anyway for asp.net to send report directly to printer at client side?
-
I am developing a point-of-sales software on asp.net. When sending crystal report to client browser for printing cash bill, browser always popup Acrobat Reader report viewer at client browser before bill can be printed. Anyway for asp.net to send report directly to printer at client side? Too many steps for cashier to get printed bills makes the system unfavorable. ):
-
I am developing a point-of-sales software on asp.net. When sending crystal report to client browser for printing cash bill, browser always popup Acrobat Reader report viewer at client browser before bill can be printed. Anyway for asp.net to send report directly to printer at client side? Too many steps for cashier to get printed bills makes the system unfavorable. ):
ASP.NET works on the server and sends HTML to the browser. It don't have any access to the printer.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
ASP.NET works on the server and sends HTML to the browser. It don't have any access to the printer.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
What about window.print()?
Thomas
-
What about window.print()?
Thomas
thomas_joyee wrote:
What about window.print()?
It's java script and won't send print command directly to printer. It will open the print dialog box.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
thomas_joyee wrote:
What about window.print()?
It's java script and won't send print command directly to printer. It will open the print dialog box.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
Oh yes it will open printer dialog box. sorry that i forgot he want print directly. i think the window.print is the only way to print something from client side
Thomas