Velocity Reviews - Computer Hardware Reviews

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

Reply
Thread Tools

Printing Problem

 
 
Dave
Guest
Posts: n/a
 
      11-29-2003
Hi Everyone,

I am fairly new to .Net and have just completed my first live ASP app.

i developed the app on a laptop and basically the user fills in a form
submits and the prints the form (in theory) this worked well on the laptop,
but fell over when i uploaded the app to the company intranet, the problem
is that the app is trying to print on the server, i have searched the web
but cannot find any help on how to convert the app to client side printing
could anyone help

Thanks in advance

Dave


 
Reply With Quote
 
 
 
 
Martin Honnen
Guest
Posts: n/a
 
      11-29-2003


Dave wrote:
> I am fairly new to .Net and have just completed my first live ASP app.
>
> i developed the app on a laptop and basically the user fills in a form
> submits and the prints the form (in theory) this worked well on the laptop,
> but fell over when i uploaded the app to the company intranet, the problem
> is that the app is trying to print on the server, i have searched the web
> but cannot find any help on how to convert the app to client side printing
> could anyone help


Well, your ASP.NET code can't print on the client machine. The user with
the browser should just load your .aspx page and use the print function
of the browser.
Or you could add a button to your page that allows the user to use
client side JavaScript to print the page:
<input type="button" value="print"
onclick="if (window.print) {
window.focus();
window.print();
}">
--

Martin Honnen
http://JavaScript.FAQTs.com/

 
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