Printing in IE

  • Thread starter Thread starter Vijay
  • Start date Start date
V

Vijay

Hi,

I have a web-form in ASP.NET that displays a table
containing a set of <a href...."> tags. Each of these tags
point to different documents(.doc, .xls, .pdf, etc) on the
server.

I want to give the user a functionality by which the user
can print all these documents on the client-side by
clicking a button on the web-form without having to open
up each document to print.

Is this possible and how?

Thanks in advance.
- Vijay
 
Vijay said:
Hi,

I have a web-form in ASP.NET that displays a table
containing a set of <a href...."> tags. Each of these tags
point to different documents(.doc, .xls, .pdf, etc) on the
server.

I want to give the user a functionality by which the user
can print all these documents on the client-side by
clicking a button on the web-form without having to open
up each document to print.

Is this possible and how?

Not in a way that uses their client to do it. The only way I can see your
scenario working is if all users are on an Intranet, and you have detailed
knowledge in the application of their network topology (i.e. where printers
are located, etc.) You could then set up a bit of an application server to
load up any documents requested, and control Word, Excel, Acrobat, etc. to
print to the printer closest to them.

R.
 
Richard,

The users of my application is not just limited to
intranet users, we also have quite a lot of extranet users
conneting from their home. Is there some other way to do
this? Maybe, by embedding some client-side scripts? Ideas?

Thanks!
Vijay
 
Back
Top