Thanks for the hints.
However, it doesn't seem to work for me. I'll try to explain a simple ASP case:
In Query.ASP, I have a <FORM ACTION="Submit.ASP" METHOD="Post"> and several INPUT tags with information for inserting a record when the user hits <INPUT TYPE="Submit" VALUE="Submit">.
In Submit.ASP, the corresponding data is extracted and the INSERT instruction is created.
These two pages are tested as is, and I can see the data inserted (both with an ASP page and an ASPX page that reads from the same database table.
The fun part is when I put the Query.ASP code into an ASPX page, with <FORM> at the very beginning, and the data input section in a div, when I hit the Submit button, there seems to be some disk i/o, but I can't see the data inserted. There seems to be some basic incompatibility somewhere, but my Script debugger didn't report any error.
Any help is welcome