Aug 1, 2005 #1 JontyMC Programmer Nov 26, 2001 1,276 GB How do you get hold of the complete http message? I want to write back to the browser what is being sent. Jon "I don't regret this, but I both rue and lament it.
How do you get hold of the complete http message? I want to write back to the browser what is being sent. Jon "I don't regret this, but I both rue and lament it.
Aug 2, 2005 #2 netfed Programmer Aug 2, 2005 3 NO Here is what you write in the page with saved as sender.html Put this after the body-tag: <a href="receiver.asp?message=goingplaces">Click me to send a message over the http header</a> In the page receiver.asp you write <% Dim message message=request.querystring("varablename_used_in_send") response.write message %> Upvote 0 Downvote
Here is what you write in the page with saved as sender.html Put this after the body-tag: <a href="receiver.asp?message=goingplaces">Click me to send a message over the http header</a> In the page receiver.asp you write <% Dim message message=request.querystring("varablename_used_in_send") response.write message %>
Aug 2, 2005 Thread starter #3 JontyMC Programmer Nov 26, 2001 1,276 GB I need the whole message, eg: POST /path/script.cgi HTTP/1.0 From: frog@jmarshall.com User-Agent: HTTPTool/1.0 Content-Type: application/x-http://www-form-urlencodedContent-Length: 32 home=Cosby&favorite+flavor=flies Jon "I don't regret this, but I both rue and lament it. Upvote 0 Downvote
I need the whole message, eg: POST /path/script.cgi HTTP/1.0 From: frog@jmarshall.com User-Agent: HTTPTool/1.0 Content-Type: application/x-http://www-form-urlencodedContent-Length: 32 home=Cosby&favorite+flavor=flies Jon "I don't regret this, but I both rue and lament it.
Aug 2, 2005 #4 ca8msm Programmer May 9, 2002 11,327 GB Just loop through each entry in Request.ServerVariables ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
Just loop through each entry in Request.ServerVariables ____________________________________________________________ Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
Aug 2, 2005 Thread starter #5 JontyMC Programmer Nov 26, 2001 1,276 GB I want all the header info too. I thought it would be simple, like Request.ToString() or something Jon "I don't regret this, but I both rue and lament it. Upvote 0 Downvote
I want all the header info too. I thought it would be simple, like Request.ToString() or something Jon "I don't regret this, but I both rue and lament it.