I'm writing a system that generates invoices that span several pages. It writes it in HTML and uses CSS page breaks after every 50 lines, the client also wants a function to be able to export the document to MS Word, however when I've tried this it doesn't recognize the page breaks!
Any ideas?
What you'll need to do is get the form data thats been posted to reportdetail.asp and pass it to results.asp.
eg. Imagine you had a form field called searchtext:
Search.asp: <form method="POST" action="reportdetail.asp" target="results">
<input...
At the beginning where you've typed:
Response.Write RandomPW(7) & "<br>" & vbCrLf
Instead you should assign this password to a variable at this point so that it remains constant throughout the execution of the script:
strPassword=RandomPW(7)
Then display it using:
Response.Write...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.