Well, if you are wanting it to be equivalent to what you will be INSERTing into the database, then you could first run this query on the db:
SELECT MAX(id) FROM tableName
Get that number, and add 1 (or whatever your incrementer is) to the number and stick that in the form --
But my question is why you would really need to do this... In most cases, the user doesn't really need to see this information unless they are updating a database, in which case the number has already been generated and you can just display it -- See what I mean??? If I go join a health club or something, then do I really need to know what my ID# is
BEFORE I sign up, or would it be acceptable for me to only know this number after the paperwork has been submitted and processed??
Just some thoughts -- maybe I'm off base. You could use the method above to simulate the autoNumber thing, though.
hope it helps!

Paul Prewett