<form name="form1" action=http://abc.com METHOD="POST"><input name="submit"
type="image" onclick="return checkinput();"src="/img/submit.gif" WIDTH="56"
HEIGHT="18">Amil
grrhhhcfvncv
You can use HttpWebRequest class.
Sample code on VB:
Dim web_request As HttpWebRequest = Nothing
web_request = WebRequest.Create("http://form_address")
web_request.Method = "POST"
web_request.ContentType = "application/x-www-form-urlencoded"
Dim requestData As Byte() =
Encoding.GetEncoding(1252).GetBytes("test")
web_request.ContentLength = requestData.Length
Dim response_str As String
Dim requestStream As Stream
requestStream = web_request.GetRequestStream()
requestStream.Write(requestData, 0, requestData.Length)
requestStream.Close()
--
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short urls & more: http://ittyurl.net
Amil
"Amil Hanish" <amilh...@hotmail.com> wrote in message
news:uo7xiBCR...@TK2MSFTNGP03.phx.gbl...
On Jan 30, 2:33 pm, "Amil Hanish" <amilhan...@hotmail.com> wrote:
> I don't think you understand. There is an EXISTING site (not .NET) that has
> three FORM elements. I'm writing a .NET program (Windows Service) that
> needs to POST to a specific FORM of the EXISTING site. I'm setting my url
> to the "action" of the specific form and trying to add all the content by 1)
> setting the ContentLength and 2) writing the content to the request
> stream...but it doesn't seem to be working.
>
Amil, give us the code of the form.
When I do the POST using my httpwebrequest object, all is fine, but I just
get the same page back...no errors or anything. I'm posting to the same url
as the "action" tag below. Thanks.
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title></title></head>
<body>
...
<form name="trkinput" action="http://wwwapps.ups.com/WebTracking/track"
METHOD="POST">
<input type="hidden" name="loc" value="en_US" />
<input type="hidden" name="HTMLVersion" value="5.0" />
<input type="hidden" name="saveNumbers" value="null" />
<p></p>
<textarea rows="5" cols="40" name="trackNums" class="modTxtAreaTrack">
</textarea>
<p></p>
<input name="AgreeToTermsAndConditions" type="checkbox" value="yes" />
By selecting this box and the Track button, I agree to the
<a href="javascript:helpModLvl('/WebTracking/terms?loc=en_US')">
Terms and Conditions
<img alt="" src="/img/1.gif" align="bottom" border="0" height="7"
width="3"><img alt="" src="/img/icn_popup_blue.gif" align="bottom"
border="0" height="9" width="9" /></a>.
<p></p>
<input name="track" type="image" onclick="return
wrapperCheckTerms(trkinput);"
src="/img/en/btn_track_a_v2.gif" WIDTH="56" HEIGHT="18" alt="Track" />
</form>
</body>
</html>
"Alexey Smirnov" <alexey....@gmail.com> wrote in message
news:1170166056.1...@v33g2000cwv.googlegroups.com...
Amil, did you check this page?
http://www.ups.com/content/us/en/bussol/offering/technology/
automated_shipping/online_tools.html
Amil
"Alexey Smirnov" <alexey....@gmail.com> wrote in message
news:1170197610.1...@s48g2000cws.googlegroups.com...