Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > Printing

Reply
Thread Tools

Printing

 
 
Rebecca
Guest
Posts: n/a
 
      10-15-2003
I have an asp application that needs to print to a
specific network printer. I am currently making it work
by using the FSO and setting the path to the printer
port, then writing out a string. The problem with that
is that all the formatting I can do is with line feeds
and tabs. Ideally, I'd like to pop open an html page on
the client machine, print it, then close it. Is there
any way to simulate calling window.print without pulling
up the printer dialog box? Either in asp or in client
side script? Any other suggestions on how to handle this?

Thanks,
Rebecca
 
Reply With Quote
 
 
 
 
Ray at
Guest
Posts: n/a
 
      10-15-2003

"Rebecca" <> wrote in message
news:0bd701c39334$fa18d620$...
> I have an asp application that needs to print to a
> specific network printer. I am currently making it work
> by using the FSO and setting the path to the printer
> port, then writing out a string. The problem with that
> is that all the formatting I can do is with line feeds
> and tabs. Ideally, I'd like to pop open an html page on
> the client machine, print it, then close it. Is there
> any way to simulate calling window.print without pulling
> up the printer dialog box?


NO. This would be abused if it were possible.

Either in asp or in client
> side script?



> Any other suggestions on how to handle this?


The best thing is to have your users print the page. Trying to print to a
printer over the lan from ASP is a bit more complicated than just telling a
user to print something.

Ray at work


 
Reply With Quote
 
 
 
 
Guest
Posts: n/a
 
      10-15-2003
>> Any other suggestions on how to handle this?
>
>The best thing is to have your users print the page.

Trying to print to a
>printer over the lan from ASP is a bit more complicated

than just telling a
>user to print something.


Thanks for the response. I wish that were an option, but
there are so many users of this application that we can't
rely on them to print the document. Plus that would
cause added work and confusion for them. This
application sends orders to a central store room for
everything from contract labor to chemicals. The
storeroom wishes to receive these orders on a printer. I
have tried and tried and tried to talk them into
receiving the orders in a group mailbox, but they will
have nothing to do with that. They have the "we've
always done it this way, why should we change"
mentality. It doesn't help that our SAP applications can
print across the network with no problem!
 
Reply With Quote
 
Dan Brussee
Guest
Posts: n/a
 
      10-15-2003
On Wed, 15 Oct 2003 09:26:14 -0700,
<> wrote:

>>> Any other suggestions on how to handle this?

>>
>>The best thing is to have your users print the page.

>Trying to print to a
>>printer over the lan from ASP is a bit more complicated

>than just telling a
>>user to print something.

>
>Thanks for the response. I wish that were an option, but
>there are so many users of this application that we can't
>rely on them to print the document. Plus that would
>cause added work and confusion for them. This
>application sends orders to a central store room for
>everything from contract labor to chemicals. The
>storeroom wishes to receive these orders on a printer. I
>have tried and tried and tried to talk them into
>receiving the orders in a group mailbox, but they will
>have nothing to do with that. They have the "we've
>always done it this way, why should we change"
>mentality. It doesn't help that our SAP applications can
>print across the network with no problem!


What about having the ASP server do the printing and just "confirm"
the print request by the user?

 
Reply With Quote
 
Richard K Bethell
Guest
Posts: n/a
 
      10-15-2003
<> wrote in message
news:03a301c39339$0d6d1f20$...
> >> Any other suggestions on how to handle this?

> >
> >The best thing is to have your users print the page.

> Trying to print to a
> >printer over the lan from ASP is a bit more complicated

> than just telling a
> >user to print something.

>
> Thanks for the response. I wish that were an option, but
> there are so many users of this application that we can't
> rely on them to print the document. Plus that would
> cause added work and confusion for them.


You need a solution that is more advanced than copying a stream to the FSO -
the only way I can see anything even remotely like this working is if by
good fortune you have PostScript printers in all the locations you are doing
this to, in which theoretically you could send PostScript commands to the
printer in question as the string, and produce a formatted document that
way.

Failing that, you probably need a solution with a rendering engine and a
network spooler - like ActivePDF Spooler and ActivePDF Server
(http://www.activepdf.com/)

R.


 
Reply With Quote
 
Rebecca
Guest
Posts: n/a
 
      10-15-2003

>What about having the ASP server do the printing and

just "confirm"
>the print request by the user?


The requirement is that the printout needs to be sent
without any interaction from the user. In addition to
that, something I forgot to mention in my previous post,
some orders have to be approved before they print to the
storeroom. In that case they do not need to print at the
time that the user submits the order.
 
Reply With Quote
 
Guest
Posts: n/a
 
      10-15-2003
I like the idea of sending PostScript commands to the
printer. There are only two printers that receive orders
and they are both new top of the line HPs, so I'm
thinking they could handle that. Where can I find out
more about the PS commands?


>You need a solution that is more advanced than copying a

stream to the FSO -
>the only way I can see anything even remotely like this

working is if by
>good fortune you have PostScript printers in all the

locations you are doing
>this to, in which theoretically you could send

PostScript commands to the
>printer in question as the string, and produce a

formatted document that
>way.
>
>Failing that, you probably need a solution with a

rendering engine and a
>network spooler - like ActivePDF Spooler and ActivePDF

Server
>(http://www.activepdf.com/)
>
>R.
>
>
>.
>

 
Reply With Quote
 
Guest
Posts: n/a
 
      10-15-2003

>strewth - I never thought I'd see that again.


Hey, whatever works!!

>you need the red book and the blue book, one is a

language ref, the other a
>cook-book of samples/examples. maybe amazon - I'm

guessing. I got mine a
>long, long time ago.


Do you know of any online references. I found a language
reference, but I can't seem to find anything to tell me
know to make the printer execute the script instead of
just printing it.
 
Reply With Quote
 
WIlliam Morris
Guest
Posts: n/a
 
      10-15-2003
Take a look at Meadroid.com. The advanced (read: not free) version of their
control ScriptX may just do what you're after. We use the free version to
control margins, headers, footers, etc...the advanced version lets you queue
to known printers, and has a "silent" mode.

Regards,

--
William Morris
Product Development, Seritas LLC


"Rebecca" <> wrote in message
news:0bd701c39334$fa18d620$...
> I have an asp application that needs to print to a
> specific network printer. I am currently making it work
> by using the FSO and setting the path to the printer
> port, then writing out a string. The problem with that
> is that all the formatting I can do is with line feeds
> and tabs. Ideally, I'd like to pop open an html page on
> the client machine, print it, then close it. Is there
> any way to simulate calling window.print without pulling
> up the printer dialog box? Either in asp or in client
> side script? Any other suggestions on how to handle this?
>
> Thanks,
> Rebecca



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 2 11-27-2010 12:12 PM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:52 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:50 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:28 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-18-2007 10:11 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57