I am working with a legacy form builder system that can have non-alphanumeric fieldnames so for example
< input type=text name="5-Teléfono">
and in asp, simply doing the following will not output the posted value
response.write (request('5-Teléfono'))
I understand this isn't the best design decision (should probably name the fields text_123 ... etc), however updating the whole system to use this structure would take time.
Is there a way in asp for me to read form field names with non-alphanumerics ?