Hey there,
I am trying to do an HTTP POST test, with the following form data:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
</head>
<body>
<form action="http://***.com/archive_results.php" method="post" name="sorter"><input type="hidden" name="start" value="0">
<input type="hidden" name="numPer" value="20">
<input type="hidden" name="IncludeStories" value="1">
<input type="hidden" name="IncludePages" value="1">
<input type="hidden" name="mode" value="allwords">
<input type="hidden" name="keyword" value="consecutive">
<input type="hidden" name="begindate" value="1/1/1999">
<input type="hidden" name="enddate" value="10/25/2007">
<input type=submit />
</form>
</body>
</html>
I am not really sure how to have it 'submit' this data via a post in hostmon?
POST Data, how to?
-
- Posts: 2832
- Joined: Tue May 16, 2006 4:41 am
- Contact:
Re: POST Data, how to?
It is pretty easy. You should enter http://***.com/archive_results.php string into "URL" input box of the "HTTP test properties" window and select "POST" from the "Request" dropdown. Into the "Post data" inpput box you should specify the following string: start=0&numPer=20&IncludeStories=1&IncludePages=1&mode=allwords&keyword=consecutive&begindate=1/1/1999&enddate=10/25/2007malken00 wrote:I am not really sure how to have it 'submit' this data via a post in hostmon?
That's all.
Regards,
Max