473,473 Members | 1,972 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Printing from ASP

Hello,

I am generating reports from database in HTML format. When i print from
browser, its printing so slow on my dotmatrix printer. How can i print in DOS
mode? I need to print on continuous sheets means long reports. Its a big time
consuming if i print from browser.

And, i am getting data and forming a line (job & " " & Size & " " & qty & "
" & lay & " " & bundleno & " " & operationno & vbcrlf & vbcrlf & vbcrlf

....

Like this, it may contain more than 5000 lines in one report. So, i am
saving this in a text file using FSO. To print on my pre printed paper, i am
giving a link to the user with the target to generated text file and an
instruction to "Right click on the link and save target as " to save the same
file to local disk as we cannot simply create a text file in client system.
Then, the client goto DOS prompt and issuing
TYPE filename.txt>PRN to print with equal line spacing and width on my pre
printed paper. This makes frustation to the client. But no choice.
How can i open DOS prompt from the client with the statement TYPE
filename.txt>PRN to directly print from the web page ? This eliminates some
frustation.

Sorry for the long post.

THanx in advance

Jul 22 '05 #1
4 1992
On Thu, 6 Jan 2005 19:13:03 -0800, Rajani
<Ra****@discussions.microsoft.com> wrote:
Hello,

I am generating reports from database in HTML format. When i print from
browser, its printing so slow on my dotmatrix printer. How can i print in DOS
mode? I need to print on continuous sheets means long reports. Its a big time
consuming if i print from browser.

And, i am getting data and forming a line (job & " " & Size & " " & qty & "
" & lay & " " & bundleno & " " & operationno & vbcrlf & vbcrlf & vbcrlf

...

Like this, it may contain more than 5000 lines in one report. So, i am
saving this in a text file using FSO. To print on my pre printed paper, i am
giving a link to the user with the target to generated text file and an
instruction to "Right click on the link and save target as " to save the same
file to local disk as we cannot simply create a text file in client system.
Then, the client goto DOS prompt and issuing
TYPE filename.txt>PRN to print with equal line spacing and width on my pre
printed paper. This makes frustation to the client. But no choice.
How can i open DOS prompt from the client with the statement TYPE
filename.txt>PRN to directly print from the web page ? This eliminates some
frustation.


You can't do this in ASP. Otherwise you could open a DOS prompt and
do a FORMAT C: as well.

Jeff
Jul 22 '05 #2

"Rajani" <Ra****@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...
Hello,

I am generating reports from database in HTML format. When i print from
browser, its printing so slow on my dotmatrix printer. How can i print in DOS mode? I need to print on continuous sheets means long reports. Its a big time consuming if i print from browser.

And, i am getting data and forming a line (job & " " & Size & " " & qty & " " & lay & " " & bundleno & " " & operationno & vbcrlf & vbcrlf & vbcrlf

...

Like this, it may contain more than 5000 lines in one report. So, i am
saving this in a text file using FSO. To print on my pre printed paper, i am giving a link to the user with the target to generated text file and an
instruction to "Right click on the link and save target as " to save the same file to local disk as we cannot simply create a text file in client system. Then, the client goto DOS prompt and issuing
TYPE filename.txt>PRN to print with equal line spacing and width on my pre
printed paper. This makes frustation to the client. But no choice.
How can i open DOS prompt from the client with the statement TYPE
filename.txt>PRN to directly print from the web page ? This eliminates some frustation.


Print to a plain text file - give it a txt extension,
and provide a link so the user can download and print it.
Jul 22 '05 #3
io

"Rajani" <Ra****@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...

...So, i am saving this in a text file using FSO. ...


Judging by the fact there was no additional posts on your previous topic
(slow ASP code), what I suggested to you 2 days ago worked fine. It is damn
frustraiting thing to me when people don't even bother to come back with
simple "Thanks" for the help they receive...

Cheers,
Igor
Jul 22 '05 #4
You'll probably need a client-side component to do this. Try searching the
web for "brower print control" and see what you find.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"Rajani" <Ra****@discussions.microsoft.com> wrote in message
news:44**********************************@microsof t.com...
Hello,

I am generating reports from database in HTML format. When i print from
browser, its printing so slow on my dotmatrix printer. How can i print in
DOS
mode? I need to print on continuous sheets means long reports. Its a big
time
consuming if i print from browser.

And, i am getting data and forming a line (job & " " & Size & " " & qty &
"
" & lay & " " & bundleno & " " & operationno & vbcrlf & vbcrlf & vbcrlf

...

Like this, it may contain more than 5000 lines in one report. So, i am
saving this in a text file using FSO. To print on my pre printed paper, i
am
giving a link to the user with the target to generated text file and an
instruction to "Right click on the link and save target as " to save the
same
file to local disk as we cannot simply create a text file in client
system.
Then, the client goto DOS prompt and issuing
TYPE filename.txt>PRN to print with equal line spacing and width on my pre
printed paper. This makes frustation to the client. But no choice.
How can i open DOS prompt from the client with the statement TYPE
filename.txt>PRN to directly print from the web page ? This eliminates
some
frustation.

Sorry for the long post.

THanx in advance

Jul 22 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Jody Gelowitz | last post by:
I am having a problem with printing selected pages. Actually, the problem isn't with printing selected pages as it is more to do with having blank pages print for those pages that have not been...
0
by: Programatix | last post by:
Hi, I am working on the PrintDocument, PrintDialog, PageSetupDialog and PrintPreviewControl components of Visual Studio .NET 2003. My developement machine is running Windows XP. There are...
9
by: Jody Gelowitz | last post by:
I am trying to find the definition of "Safe Printing" and cannot find out exactly what this entitles. The reason is that I am trying to print contents from a single textbox to no avail using the...
4
by: Suzanka | last post by:
Hello, I have an application written in C# on visual studio .NET. It is a web aplication. The application consists of many different forms, that users occassionaly want to print out for filing....
4
by: Arif | last post by:
I C# code prints very slow as compared to a third party barcode printing software. That software prints approximately 10 labels in 2 seconds while my C# code prints 10 labels in 5 to 6 seconds. And...
6
by: Siv | last post by:
Hi, I am getting into printing with VB.NET 2005 and want to implement the usual capability that a user can select a selection of pages. I have a report that is generated by my application that if...
8
by: Neo Geshel | last post by:
Greetings. BACKGROUND: My sites are pure XHTML 1.1 with CSS 2.1 for markup. My pages are delivered as application/xhtml+xml for all non-MS web clients, and as text/xml for all MS web...
0
by: nikhilgargi | last post by:
Requirement: I need to provide printing capability in a C# desktop application that I am developing The documents that need to be printed can be in Rich Text Format (RTF) or HTML. Custom...
18
by: Brett | last post by:
I have an ASP.NET page that displays work orders in a GridView. In that GridView is a checkbox column. When the user clicks a "Print" button, I create a report, using the .NET Framework printing...
0
it0ny
by: it0ny | last post by:
Hi guys, thanks I am fairly new to this forum so I hope I chose the right place to post this question. I try to make my program printout a deposit's report. I created a class to store the...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.