Awwww I see so basically you want a counter, like a page counter that increments every time the page is open.
Make a file in note pad type 1 and save as Count_Me.cnt. This file will need write privlages
In the same directory as Count_Me.cnt make a page call test.asp. In test.asp put this code.
<%
varInOutFile = Server.MapPath("Count_Me.cnt")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set a = objFSO.OpenTextFile(varInOutFile)
ct = CLng(a.ReadLine)
ct = ct + 1
Set a = objFSO.CreateTextFile(varInOutFile, True)
a.WriteLine (ct) '--> increase the counter
a.Close
Set a = Nothing
Set objFSO = Nothing
response.write ct 'This is your form number
%>
Earl
www.jhdesigninc.com