Yes, you have to have the form call its own ASP page. You then check the state of a Request.Form element such as the submit button to see if the text is blank. If it is't then you know that it has called itself. See below:
Code:
if Request.Form("Submit") <> "" then
'page has been called by itself
MySub()
end if
Hope this helps,
James James Culshaw
jculshaw@active-data-solutions.co.uk
You can actually have multiple forms within the ASP page that keep calling the same page. I have had an ASP page with two forms and it called itself 3 times. You just need to give each form a different name, and make sure that the Submit buttons have different values.
James James Culshaw
jculshaw@active-data-solutions.co.uk
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.