Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Batch Printing In ASP

Status
Not open for further replies.

bmk50

Programmer
Aug 27, 2001
1
US
hi,
iam doing TimeSheet management using ASP.I have a ASP page which generates a view of consultants working on a project.When a admin of a company views this list he Should be allowed to print the timesheets for all the consultants listed(Batch printing of timesheets).
Right now iam printing for each consultant using the javascript:window.print method(For consultant View).
But,is there a way for batch printing with parameters using ASP.If someone can give me a suggestion it will be of great help.

Thanks in advance.
 
About as bare bones as you can get for the structure, here is what you need to do...

while not consultants.eof
print timesheet for current consultant
consultants.movenext()
loop
Steve Davis
hey.you@hahaha.com.au
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top