I recommend that you use some type of naming convention like all hidden field names start with an "x" so you could check for them like...
Code:
for each item in request.fields
if left(item,1) = "x" then
'handle hidden field here
end if
next
Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
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.