Archived Forum Post

Index of archived forum posts

Question:

Echo POST Params ASP Source?

Dec 28 '12 at 10:47

i am able to post to your test page and receive the results correctly:
http://www.chilkatsoft.com/echoPost.asp

But I am not able to recreate the similar page on my web server to receive the data using your components. Can you send the classic asp source code for echoPost.asp so that I can see what I'm doing wrong/missing.

I'm basically trying to post to a classic asp form a few form files and multiples images.


Answer

Here it is:

<html>
<body>

<% for each x in Request.Form Response.Write("<br>" & x & " = " & Request.Form(x)) next %>

</body> </html>