Not always. I use a standard way to present the user a startscreen for reports. After hitting SUBMIT, the report is created. The submit recursively calls the same program, but the 2nd time i do not want the startscreen....
(VERY BASIC) EXAMPLE.ASP:
if request.form("fSubmitted" <> "Yes" then
' Build my initial screen withh parameters
<form method=post action=example.asp>
<input type=hidden name=fSubmitted value=Yes>
For which year you want this report?
<input type=text name=fYear size=4 maxlength=4>
<input type=submit>
end if
' CREATE THE REPORT
dim cYear
cYear = request.form("fYear"
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.