Is it possible to write a generic asp construct that will simply write out the parameters sent to the page?
It seems like this should be pretty simple, but I can't figure out how to do it.
eg:
If I call test.asp?x=1&y="Hello World"&z=2.3
then it would print:
x=1
y=Hello World
z=2.3
But if I call test.asp?a=1&c="Hello World"
then it would print:
a=1
c=Hello World
etc...
NB that I want to POST the arguments not GET them. If that makes a difference.
TIA
It seems like this should be pretty simple, but I can't figure out how to do it.
eg:
If I call test.asp?x=1&y="Hello World"&z=2.3
then it would print:
x=1
y=Hello World
z=2.3
But if I call test.asp?a=1&c="Hello World"
then it would print:
a=1
c=Hello World
etc...
NB that I want to POST the arguments not GET them. If that makes a difference.
TIA
Comment