473,397 Members | 1,950 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

How do I perform an HTML POST from a button using vb.net code?

Hello,

I would like to do the following from a asp.net button click:

<form method="POST"
action="https://www.1234.com/trans_center/gateway/direct.cgi">
<input type="hidden" name="Merchant" value="Merchant Name">
<input type="hidden" name="OrderID" value="Unique OrderID value">
<input type="hidden" name="email" value="Customers email address
(OPTIONAL)">
<input type="hidden" name="total" value="total calculated transaction amount
value">
<input type="hidden" name="URL" value="http://Your Web Site Address/script
name to receive variables">

<input type="text" name="Cardname"><Br>
<input type="text" name="Cardnum1"><Br>
<input type="text" name="Cardnum2"><Br>
<input type="text" name="Cardnum3"><Br>
<input type="text" name="Cardnum4"><Br>
<input type="text" name="NameonCard"><Br>
<input type="text" name="Cardstreet"><Br>
<input type="text" name="Cardcity"><Br>
<input type="text" name="Cardstate"><Br>
<input type="text" name="Cardzip"><Br>
<input type="text" name="Cardcountry"><Br>
<input type="text" name="CardexpM"><Br>
<input type="text" name="CardexpY"><Br>
<input type="text" name="CVV2"><Br> </form>
I know that this can be done from inside the HTML but I would like to do
this same thing with VB.NET code inside a button click subroutine.

I am sure there is something inside the dot.net framework that allows this.
I just dont know what it is.

Thnaks for your help!

Justin
Nov 19 '05 #1
7 4235
using System.Net;
using System.IO;

request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
String data_to_post = "action=insert&first_name="+first_name+…;
byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
request.ContentLength = bytes.Length;
request_stream = request.GetRequestStream();
request_stream.Write(bytes, 0, bytes.Length);
request_stream.Close();

//Read the server response
response = (HttpWebResponse)request.GetResponse();
…
"wa********@newsgroups.nospam" wrote:
Hello,

I would like to do the following from a asp.net button click:

<form method="POST"
action="https://www.1234.com/trans_center/gateway/direct.cgi">
<input type="hidden" name="Merchant" value="Merchant Name">
<input type="hidden" name="OrderID" value="Unique OrderID value">
<input type="hidden" name="email" value="Customers email address
(OPTIONAL)">
<input type="hidden" name="total" value="total calculated transaction amount
value">
<input type="hidden" name="URL" value="http://Your Web Site Address/script
name to receive variables">

<input type="text" name="Cardname"><Br>
<input type="text" name="Cardnum1"><Br>
<input type="text" name="Cardnum2"><Br>
<input type="text" name="Cardnum3"><Br>
<input type="text" name="Cardnum4"><Br>
<input type="text" name="NameonCard"><Br>
<input type="text" name="Cardstreet"><Br>
<input type="text" name="Cardcity"><Br>
<input type="text" name="Cardstate"><Br>
<input type="text" name="Cardzip"><Br>
<input type="text" name="Cardcountry"><Br>
<input type="text" name="CardexpM"><Br>
<input type="text" name="CardexpY"><Br>
<input type="text" name="CVV2"><Br> </form>
I know that this can be done from inside the HTML but I would like to do
this same thing with VB.NET code inside a button click subroutine.

I am sure there is something inside the dot.net framework that allows this.
I just dont know what it is.

Thnaks for your help!

Justin

Nov 19 '05 #2
Robert,

That works fine except that the response back is supposed to be in a query
string of a GET method. How would I read that from the response stream?

Here is the code that I wrote based on your post:

Dim webReq As HttpWebRequest =
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/direct.cgi"),
HttpWebRequest)

webReq.Method = "POST"

webReq.ContentType = "application/x-www-form-urlencoded"

Dim strInformation As String

strInformation = "Merchant=17778" & _

"&OrderID=1234567890" & _

"&total=100.98" & _

"&e**************@test.com" & _

"&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _

"&Cardname=Visa" & _

"&Cardnum1=1234" & _

"&Cardnum2=5678" & _

"&Cardnum3=9012" & _

"&Cardnum4=3456" & _

"&NameonCard=John Doe" & _

"&Cardstreet=1234 Happy Lane" & _

"&Cardcity=Reno" & _

"&Cardstate=Nevada" & _

"&Cardzip=89502" & _

"&Cardcountry=US" & _

"&CardexpM=09" & _

"&CardexpY=06" & _

"&CVV2=123" & _

"&e**************@test.com"

Dim bytes As Byte() = System.Text.Encoding.UTF8.GetBytes(strInformation)

webReq.ContentLength = bytes.Length

Dim requestStream As System.IO.Stream = webReq.GetRequestStream

requestStream.Write(bytes, 0, bytes.Length)

requestStream.Close()

Thanks

J

"Robert Burdick [eMVP]" <Ro***************@discussions.microsoft.com> wrote
in message news:0E**********************************@microsof t.com...
using System.Net;
using System.IO;

request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
String data_to_post = "action=insert&first_name="+first_name+.;
byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
request.ContentLength = bytes.Length;
request_stream = request.GetRequestStream();
request_stream.Write(bytes, 0, bytes.Length);
request_stream.Close();

//Read the server response
response = (HttpWebResponse)request.GetResponse();
.
"wa********@newsgroups.nospam" wrote:
Hello,

I would like to do the following from a asp.net button click:

<form method="POST"
action="https://www.1234.com/trans_center/gateway/direct.cgi">
<input type="hidden" name="Merchant" value="Merchant Name">
<input type="hidden" name="OrderID" value="Unique OrderID value">
<input type="hidden" name="email" value="Customers email address
(OPTIONAL)">
<input type="hidden" name="total" value="total calculated transaction
amount
value">
<input type="hidden" name="URL" value="http://Your Web Site
Address/script
name to receive variables">

<input type="text" name="Cardname"><Br>
<input type="text" name="Cardnum1"><Br>
<input type="text" name="Cardnum2"><Br>
<input type="text" name="Cardnum3"><Br>
<input type="text" name="Cardnum4"><Br>
<input type="text" name="NameonCard"><Br>
<input type="text" name="Cardstreet"><Br>
<input type="text" name="Cardcity"><Br>
<input type="text" name="Cardstate"><Br>
<input type="text" name="Cardzip"><Br>
<input type="text" name="Cardcountry"><Br>
<input type="text" name="CardexpM"><Br>
<input type="text" name="CardexpY"><Br>
<input type="text" name="CVV2"><Br> </form>
I know that this can be done from inside the HTML but I would like to do
this same thing with VB.NET code inside a button click subroutine.

I am sure there is something inside the dot.net framework that allows
this.
I just dont know what it is.

Thnaks for your help!

Justin

Nov 19 '05 #3
Hi J,

After we call the HttpWebRequest.GetResponse() and the method return, we'll
get a HttpWebResponse object which contains the response data from the
serverside. And all the response data stream can be retrieve through the
HttpWebResponse.GetResponseStream() method, e.g:

HttpWebRequest request
............................

HttpWebResponse response = request.GetResponse() as HttpWebResponse;

System.IO.StreamReader reader = new
System.IO.StreamReader(response.GetResponseStream( ));

string reponseHTML = reader.ReadToEnd();

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Reply-To: <wa********@newsgroups.nospam>
| From: <wa********@newsgroups.nospam>
| References: <Os*************@TK2MSFTNGP10.phx.gbl>
<0E**********************************@microsoft.co m>
| Subject: Re: How do I perform an HTML POST from a button using vb.net
code?
| Date: Wed, 26 Oct 2005 17:22:48 -0700
| Lines: 141
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <#S**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:134157
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Robert,
|
| That works fine except that the response back is supposed to be in a
query
| string of a GET method. How would I read that from the response stream?
|
| Here is the code that I wrote based on your post:
|
| Dim webReq As HttpWebRequest =
|
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/d
irect.cgi"),
| HttpWebRequest)
|
| webReq.Method = "POST"
|
| webReq.ContentType = "application/x-www-form-urlencoded"
|
| Dim strInformation As String
|
| strInformation = "Merchant=17778" & _
|
| "&OrderID=1234567890" & _
|
| "&total=100.98" & _
|
| "&e**************@test.com" & _
|
| "&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _
|
| "&Cardname=Visa" & _
|
| "&Cardnum1=1234" & _
|
| "&Cardnum2=5678" & _
|
| "&Cardnum3=9012" & _
|
| "&Cardnum4=3456" & _
|
| "&NameonCard=John Doe" & _
|
| "&Cardstreet=1234 Happy Lane" & _
|
| "&Cardcity=Reno" & _
|
| "&Cardstate=Nevada" & _
|
| "&Cardzip=89502" & _
|
| "&Cardcountry=US" & _
|
| "&CardexpM=09" & _
|
| "&CardexpY=06" & _
|
| "&CVV2=123" & _
|
| "&e**************@test.com"
|
| Dim bytes As Byte() = System.Text.Encoding.UTF8.GetBytes(strInformation)
|
| webReq.ContentLength = bytes.Length
|
| Dim requestStream As System.IO.Stream = webReq.GetRequestStream
|
| requestStream.Write(bytes, 0, bytes.Length)
|
| requestStream.Close()
|
| Thanks
|
| J
|
| "Robert Burdick [eMVP]" <Ro***************@discussions.microsoft.com>
wrote
| in message news:0E**********************************@microsof t.com...
| > using System.Net;
| > using System.IO;
| >
| > request = (HttpWebRequest)WebRequest.Create(url);
| > request.Method = "POST";
| > request.ContentType = "application/x-www-form-urlencoded";
| > String data_to_post = "action=insert&first_name="+first_name+.;
| > byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
| > request.ContentLength = bytes.Length;
| > request_stream = request.GetRequestStream();
| > request_stream.Write(bytes, 0, bytes.Length);
| > request_stream.Close();
| >
| > //Read the server response
| > response = (HttpWebResponse)request.GetResponse();
| > .
| >
| >
| > "wa********@newsgroups.nospam" wrote:
| >
| >> Hello,
| >>
| >> I would like to do the following from a asp.net button click:
| >>
| >> <form method="POST"
| >> action="https://www.1234.com/trans_center/gateway/direct.cgi">
| >> <input type="hidden" name="Merchant" value="Merchant Name">
| >> <input type="hidden" name="OrderID" value="Unique OrderID value">
| >> <input type="hidden" name="email" value="Customers email address
| >> (OPTIONAL)">
| >> <input type="hidden" name="total" value="total calculated transaction
| >> amount
| >> value">
| >> <input type="hidden" name="URL" value="http://Your Web Site
| >> Address/script
| >> name to receive variables">
| >>
| >> <input type="text" name="Cardname"><Br>
| >> <input type="text" name="Cardnum1"><Br>
| >> <input type="text" name="Cardnum2"><Br>
| >> <input type="text" name="Cardnum3"><Br>
| >> <input type="text" name="Cardnum4"><Br>
| >> <input type="text" name="NameonCard"><Br>
| >> <input type="text" name="Cardstreet"><Br>
| >> <input type="text" name="Cardcity"><Br>
| >> <input type="text" name="Cardstate"><Br>
| >> <input type="text" name="Cardzip"><Br>
| >> <input type="text" name="Cardcountry"><Br>
| >> <input type="text" name="CardexpM"><Br>
| >> <input type="text" name="CardexpY"><Br>
| >> <input type="text" name="CVV2"><Br> </form>
| >>
| >>
| >> I know that this can be done from inside the HTML but I would like to
do
| >> this same thing with VB.NET code inside a button click subroutine.
| >>
| >> I am sure there is something inside the dot.net framework that allows
| >> this.
| >> I just dont know what it is.
| >>
| >> Thnaks for your help!
| >>
| >> Justin
| >>
| >>
| >>
|
|
|

Nov 19 '05 #4
Steven,

I keep getting the following error:

"The server committed a protocol violation. Section=ResponseHeader Detail=CR
must be followed by LF"

I am using ASP.NET 2.0. Here is my code based on what you wrote:
'Receive Response

Dim webResponse As HttpWebResponse

webResponse = CType(webReq.GetResponse(), HttpWebResponse)

Dim rdrReader As System.IO.StreamReader

rdrReader = New System.IO.StreamReader(webResponse.GetResponseStre am)

Dim responseHTML As String

responseHTML = rdrReader.ReadToEnd

Label1.Text = responseHTML

I tried to do some searched on this error and I cant find any.
Thanks,

J

"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:hY****************@TK2MSFTNGXA01.phx.gbl...
Hi J,

After we call the HttpWebRequest.GetResponse() and the method return,
we'll
get a HttpWebResponse object which contains the response data from the
serverside. And all the response data stream can be retrieve through the
HttpWebResponse.GetResponseStream() method, e.g:

HttpWebRequest request
...........................

HttpWebResponse response = request.GetResponse() as HttpWebResponse;

System.IO.StreamReader reader = new
System.IO.StreamReader(response.GetResponseStream( ));

string reponseHTML = reader.ReadToEnd();

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Reply-To: <wa********@newsgroups.nospam>
| From: <wa********@newsgroups.nospam>
| References: <Os*************@TK2MSFTNGP10.phx.gbl>
<0E**********************************@microsoft.co m>
| Subject: Re: How do I perform an HTML POST from a button using vb.net
code?
| Date: Wed, 26 Oct 2005 17:22:48 -0700
| Lines: 141
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <#S**************@TK2MSFTNGP10.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:134157
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Robert,
|
| That works fine except that the response back is supposed to be in a
query
| string of a GET method. How would I read that from the response stream?
|
| Here is the code that I wrote based on your post:
|
| Dim webReq As HttpWebRequest =
|
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/d
irect.cgi"),
| HttpWebRequest)
|
| webReq.Method = "POST"
|
| webReq.ContentType = "application/x-www-form-urlencoded"
|
| Dim strInformation As String
|
| strInformation = "Merchant=17778" & _
|
| "&OrderID=1234567890" & _
|
| "&total=100.98" & _
|
| "&e**************@test.com" & _
|
| "&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _
|
| "&Cardname=Visa" & _
|
| "&Cardnum1=1234" & _
|
| "&Cardnum2=5678" & _
|
| "&Cardnum3=9012" & _
|
| "&Cardnum4=3456" & _
|
| "&NameonCard=John Doe" & _
|
| "&Cardstreet=1234 Happy Lane" & _
|
| "&Cardcity=Reno" & _
|
| "&Cardstate=Nevada" & _
|
| "&Cardzip=89502" & _
|
| "&Cardcountry=US" & _
|
| "&CardexpM=09" & _
|
| "&CardexpY=06" & _
|
| "&CVV2=123" & _
|
| "&e**************@test.com"
|
| Dim bytes As Byte() = System.Text.Encoding.UTF8.GetBytes(strInformation)
|
| webReq.ContentLength = bytes.Length
|
| Dim requestStream As System.IO.Stream = webReq.GetRequestStream
|
| requestStream.Write(bytes, 0, bytes.Length)
|
| requestStream.Close()
|
| Thanks
|
| J
|
| "Robert Burdick [eMVP]" <Ro***************@discussions.microsoft.com>
wrote
| in message news:0E**********************************@microsof t.com...
| > using System.Net;
| > using System.IO;
| >
| > request = (HttpWebRequest)WebRequest.Create(url);
| > request.Method = "POST";
| > request.ContentType = "application/x-www-form-urlencoded";
| > String data_to_post = "action=insert&first_name="+first_name+.;
| > byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
| > request.ContentLength = bytes.Length;
| > request_stream = request.GetRequestStream();
| > request_stream.Write(bytes, 0, bytes.Length);
| > request_stream.Close();
| >
| > //Read the server response
| > response = (HttpWebResponse)request.GetResponse();
| > .
| >
| >
| > "wa********@newsgroups.nospam" wrote:
| >
| >> Hello,
| >>
| >> I would like to do the following from a asp.net button click:
| >>
| >> <form method="POST"
| >> action="https://www.1234.com/trans_center/gateway/direct.cgi">
| >> <input type="hidden" name="Merchant" value="Merchant Name">
| >> <input type="hidden" name="OrderID" value="Unique OrderID value">
| >> <input type="hidden" name="email" value="Customers email address
| >> (OPTIONAL)">
| >> <input type="hidden" name="total" value="total calculated transaction
| >> amount
| >> value">
| >> <input type="hidden" name="URL" value="http://Your Web Site
| >> Address/script
| >> name to receive variables">
| >>
| >> <input type="text" name="Cardname"><Br>
| >> <input type="text" name="Cardnum1"><Br>
| >> <input type="text" name="Cardnum2"><Br>
| >> <input type="text" name="Cardnum3"><Br>
| >> <input type="text" name="Cardnum4"><Br>
| >> <input type="text" name="NameonCard"><Br>
| >> <input type="text" name="Cardstreet"><Br>
| >> <input type="text" name="Cardcity"><Br>
| >> <input type="text" name="Cardstate"><Br>
| >> <input type="text" name="Cardzip"><Br>
| >> <input type="text" name="Cardcountry"><Br>
| >> <input type="text" name="CardexpM"><Br>
| >> <input type="text" name="CardexpY"><Br>
| >> <input type="text" name="CVV2"><Br> </form>
| >>
| >>
| >> I know that this can be done from inside the HTML but I would like to
do
| >> this same thing with VB.NET code inside a button click subroutine.
| >>
| >> I am sure there is something inside the dot.net framework that allows
| >> this.
| >> I just dont know what it is.
| >>
| >> Thnaks for your help!
| >>
| >> Justin
| >>
| >>
| >>
|
|
|

Nov 19 '05 #5
Hi J,

Thanks for your response.
I think this should be a page specific problems. Are you using the
httpwebRequest to programmatically request a ASP.NET 2.0 web page? If so,
you can try requesting another simple page 1.x or 2.0 instead to see
whether you encounter the same problem. If it is confirmed to be a page
specific one, we can try isolate the page and them simplify the page to
narrow down the problem.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Reply-To: <wa********@newsgroups.nospam>
| From: <wa********@newsgroups.nospam>
| References: <Os*************@TK2MSFTNGP10.phx.gbl>
<0E**********************************@microsoft.co m>
<#S**************@TK2MSFTNGP10.phx.gbl>
<hY**************@TK2MSFTNGXA01.phx.gbl>
| Subject: Re: How do I perform an HTML POST from a button using vb.net
code?
| Date: Fri, 28 Oct 2005 09:58:32 -0700
| Lines: 234
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <OF**************@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:134571
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven,
|
| I keep getting the following error:
|
| "The server committed a protocol violation. Section=ResponseHeader
Detail=CR
| must be followed by LF"
|
| I am using ASP.NET 2.0. Here is my code based on what you wrote:
| 'Receive Response
|
| Dim webResponse As HttpWebResponse
|
| webResponse = CType(webReq.GetResponse(), HttpWebResponse)
|
| Dim rdrReader As System.IO.StreamReader
|
| rdrReader = New System.IO.StreamReader(webResponse.GetResponseStre am)
|
| Dim responseHTML As String
|
| responseHTML = rdrReader.ReadToEnd
|
| Label1.Text = responseHTML
|
| I tried to do some searched on this error and I cant find any.
|
|
| Thanks,
|
| J
|
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:hY****************@TK2MSFTNGXA01.phx.gbl...
| > Hi J,
| >
| > After we call the HttpWebRequest.GetResponse() and the method return,
| > we'll
| > get a HttpWebResponse object which contains the response data from the
| > serverside. And all the response data stream can be retrieve through the
| > HttpWebResponse.GetResponseStream() method, e.g:
| >
| > HttpWebRequest request
| > ...........................
| >
| > HttpWebResponse response = request.GetResponse() as HttpWebResponse;
| >
| > System.IO.StreamReader reader = new
| > System.IO.StreamReader(response.GetResponseStream( ));
| >
| > string reponseHTML = reader.ReadToEnd();
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| > --------------------
| > | Reply-To: <wa********@newsgroups.nospam>
| > | From: <wa********@newsgroups.nospam>
| > | References: <Os*************@TK2MSFTNGP10.phx.gbl>
| > <0E**********************************@microsoft.co m>
| > | Subject: Re: How do I perform an HTML POST from a button using vb.net
| > code?
| > | Date: Wed, 26 Oct 2005 17:22:48 -0700
| > | Lines: 141
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | Message-ID: <#S**************@TK2MSFTNGP10.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
| > | Xref: TK2MSFTNGXA01.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:134157
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | Robert,
| > |
| > | That works fine except that the response back is supposed to be in a
| > query
| > | string of a GET method. How would I read that from the response
stream?
| > |
| > | Here is the code that I wrote based on your post:
| > |
| > | Dim webReq As HttpWebRequest =
| > |
| >
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/d
| > irect.cgi"),
| > | HttpWebRequest)
| > |
| > | webReq.Method = "POST"
| > |
| > | webReq.ContentType = "application/x-www-form-urlencoded"
| > |
| > | Dim strInformation As String
| > |
| > | strInformation = "Merchant=17778" & _
| > |
| > | "&OrderID=1234567890" & _
| > |
| > | "&total=100.98" & _
| > |
| > | "&e**************@test.com" & _
| > |
| > | "&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _
| > |
| > | "&Cardname=Visa" & _
| > |
| > | "&Cardnum1=1234" & _
| > |
| > | "&Cardnum2=5678" & _
| > |
| > | "&Cardnum3=9012" & _
| > |
| > | "&Cardnum4=3456" & _
| > |
| > | "&NameonCard=John Doe" & _
| > |
| > | "&Cardstreet=1234 Happy Lane" & _
| > |
| > | "&Cardcity=Reno" & _
| > |
| > | "&Cardstate=Nevada" & _
| > |
| > | "&Cardzip=89502" & _
| > |
| > | "&Cardcountry=US" & _
| > |
| > | "&CardexpM=09" & _
| > |
| > | "&CardexpY=06" & _
| > |
| > | "&CVV2=123" & _
| > |
| > | "&e**************@test.com"
| > |
| > | Dim bytes As Byte() =
System.Text.Encoding.UTF8.GetBytes(strInformation)
| > |
| > | webReq.ContentLength = bytes.Length
| > |
| > | Dim requestStream As System.IO.Stream = webReq.GetRequestStream
| > |
| > | requestStream.Write(bytes, 0, bytes.Length)
| > |
| > | requestStream.Close()
| > |
| > | Thanks
| > |
| > | J
| > |
| > | "Robert Burdick [eMVP]" <Ro***************@discussions.microsoft.com>
| > wrote
| > | in message news:0E**********************************@microsof t.com...
| > | > using System.Net;
| > | > using System.IO;
| > | >
| > | > request = (HttpWebRequest)WebRequest.Create(url);
| > | > request.Method = "POST";
| > | > request.ContentType = "application/x-www-form-urlencoded";
| > | > String data_to_post = "action=insert&first_name="+first_name+.;
| > | > byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
| > | > request.ContentLength = bytes.Length;
| > | > request_stream = request.GetRequestStream();
| > | > request_stream.Write(bytes, 0, bytes.Length);
| > | > request_stream.Close();
| > | >
| > | > //Read the server response
| > | > response = (HttpWebResponse)request.GetResponse();
| > | > .
| > | >
| > | >
| > | > "wa********@newsgroups.nospam" wrote:
| > | >
| > | >> Hello,
| > | >>
| > | >> I would like to do the following from a asp.net button click:
| > | >>
| > | >> <form method="POST"
| > | >> action="https://www.1234.com/trans_center/gateway/direct.cgi">
| > | >> <input type="hidden" name="Merchant" value="Merchant Name">
| > | >> <input type="hidden" name="OrderID" value="Unique OrderID value">
| > | >> <input type="hidden" name="email" value="Customers email address
| > | >> (OPTIONAL)">
| > | >> <input type="hidden" name="total" value="total calculated
transaction
| > | >> amount
| > | >> value">
| > | >> <input type="hidden" name="URL" value="http://Your Web Site
| > | >> Address/script
| > | >> name to receive variables">
| > | >>
| > | >> <input type="text" name="Cardname"><Br>
| > | >> <input type="text" name="Cardnum1"><Br>
| > | >> <input type="text" name="Cardnum2"><Br>
| > | >> <input type="text" name="Cardnum3"><Br>
| > | >> <input type="text" name="Cardnum4"><Br>
| > | >> <input type="text" name="NameonCard"><Br>
| > | >> <input type="text" name="Cardstreet"><Br>
| > | >> <input type="text" name="Cardcity"><Br>
| > | >> <input type="text" name="Cardstate"><Br>
| > | >> <input type="text" name="Cardzip"><Br>
| > | >> <input type="text" name="Cardcountry"><Br>
| > | >> <input type="text" name="CardexpM"><Br>
| > | >> <input type="text" name="CardexpY"><Br>
| > | >> <input type="text" name="CVV2"><Br> </form>
| > | >>
| > | >>
| > | >> I know that this can be done from inside the HTML but I would like
to
| > do
| > | >> this same thing with VB.NET code inside a button click subroutine.
| > | >>
| > | >> I am sure there is something inside the dot.net framework that
allows
| > | >> this.
| > | >> I just dont know what it is.
| > | >>
| > | >> Thnaks for your help!
| > | >>
| > | >> Justin
| > | >>
| > | >>
| > | >>
| > |
| > |
| > |
| >
|
|
|

Nov 19 '05 #6
Steven,

I was using the beta2 version of asp.net 2.0. I just installed the latest
release version. I am going to try and see if it happens again. I will let
you know.

Thanks,

j

"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:at**************@TK2MSFTNGXA01.phx.gbl...
Hi J,

Thanks for your response.
I think this should be a page specific problems. Are you using the
httpwebRequest to programmatically request a ASP.NET 2.0 web page? If so,
you can try requesting another simple page 1.x or 2.0 instead to see
whether you encounter the same problem. If it is confirmed to be a page
specific one, we can try isolate the page and them simplify the page to
narrow down the problem.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Reply-To: <wa********@newsgroups.nospam>
| From: <wa********@newsgroups.nospam>
| References: <Os*************@TK2MSFTNGP10.phx.gbl>
<0E**********************************@microsoft.co m>
<#S**************@TK2MSFTNGP10.phx.gbl>
<hY**************@TK2MSFTNGXA01.phx.gbl>
| Subject: Re: How do I perform an HTML POST from a button using vb.net
code?
| Date: Fri, 28 Oct 2005 09:58:32 -0700
| Lines: 234
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| Message-ID: <OF**************@TK2MSFTNGP12.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:134571
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven,
|
| I keep getting the following error:
|
| "The server committed a protocol violation. Section=ResponseHeader
Detail=CR
| must be followed by LF"
|
| I am using ASP.NET 2.0. Here is my code based on what you wrote:
| 'Receive Response
|
| Dim webResponse As HttpWebResponse
|
| webResponse = CType(webReq.GetResponse(), HttpWebResponse)
|
| Dim rdrReader As System.IO.StreamReader
|
| rdrReader = New System.IO.StreamReader(webResponse.GetResponseStre am)
|
| Dim responseHTML As String
|
| responseHTML = rdrReader.ReadToEnd
|
| Label1.Text = responseHTML
|
| I tried to do some searched on this error and I cant find any.
|
|
| Thanks,
|
| J
|
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:hY****************@TK2MSFTNGXA01.phx.gbl...
| > Hi J,
| >
| > After we call the HttpWebRequest.GetResponse() and the method return,
| > we'll
| > get a HttpWebResponse object which contains the response data from the
| > serverside. And all the response data stream can be retrieve through
the
| > HttpWebResponse.GetResponseStream() method, e.g:
| >
| > HttpWebRequest request
| > ...........................
| >
| > HttpWebResponse response = request.GetResponse() as HttpWebResponse;
| >
| > System.IO.StreamReader reader = new
| > System.IO.StreamReader(response.GetResponseStream( ));
| >
| > string reponseHTML = reader.ReadToEnd();
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| > --------------------
| > | Reply-To: <wa********@newsgroups.nospam>
| > | From: <wa********@newsgroups.nospam>
| > | References: <Os*************@TK2MSFTNGP10.phx.gbl>
| > <0E**********************************@microsoft.co m>
| > | Subject: Re: How do I perform an HTML POST from a button using
vb.net
| > code?
| > | Date: Wed, 26 Oct 2005 17:22:48 -0700
| > | Lines: 141
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | Message-ID: <#S**************@TK2MSFTNGP10.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| > | Path:
TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
| > | Xref: TK2MSFTNGXA01.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:134157
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | Robert,
| > |
| > | That works fine except that the response back is supposed to be in a
| > query
| > | string of a GET method. How would I read that from the response
stream?
| > |
| > | Here is the code that I wrote based on your post:
| > |
| > | Dim webReq As HttpWebRequest =
| > |
| >
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/d
| > irect.cgi"),
| > | HttpWebRequest)
| > |
| > | webReq.Method = "POST"
| > |
| > | webReq.ContentType = "application/x-www-form-urlencoded"
| > |
| > | Dim strInformation As String
| > |
| > | strInformation = "Merchant=17778" & _
| > |
| > | "&OrderID=1234567890" & _
| > |
| > | "&total=100.98" & _
| > |
| > | "&e**************@test.com" & _
| > |
| > | "&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _
| > |
| > | "&Cardname=Visa" & _
| > |
| > | "&Cardnum1=1234" & _
| > |
| > | "&Cardnum2=5678" & _
| > |
| > | "&Cardnum3=9012" & _
| > |
| > | "&Cardnum4=3456" & _
| > |
| > | "&NameonCard=John Doe" & _
| > |
| > | "&Cardstreet=1234 Happy Lane" & _
| > |
| > | "&Cardcity=Reno" & _
| > |
| > | "&Cardstate=Nevada" & _
| > |
| > | "&Cardzip=89502" & _
| > |
| > | "&Cardcountry=US" & _
| > |
| > | "&CardexpM=09" & _
| > |
| > | "&CardexpY=06" & _
| > |
| > | "&CVV2=123" & _
| > |
| > | "&e**************@test.com"
| > |
| > | Dim bytes As Byte() =
System.Text.Encoding.UTF8.GetBytes(strInformation)
| > |
| > | webReq.ContentLength = bytes.Length
| > |
| > | Dim requestStream As System.IO.Stream = webReq.GetRequestStream
| > |
| > | requestStream.Write(bytes, 0, bytes.Length)
| > |
| > | requestStream.Close()
| > |
| > | Thanks
| > |
| > | J
| > |
| > | "Robert Burdick [eMVP]"
<Ro***************@discussions.microsoft.com>
| > wrote
| > | in message
news:0E**********************************@microsof t.com...
| > | > using System.Net;
| > | > using System.IO;
| > | >
| > | > request = (HttpWebRequest)WebRequest.Create(url);
| > | > request.Method = "POST";
| > | > request.ContentType = "application/x-www-form-urlencoded";
| > | > String data_to_post = "action=insert&first_name="+first_name+.;
| > | > byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
| > | > request.ContentLength = bytes.Length;
| > | > request_stream = request.GetRequestStream();
| > | > request_stream.Write(bytes, 0, bytes.Length);
| > | > request_stream.Close();
| > | >
| > | > //Read the server response
| > | > response = (HttpWebResponse)request.GetResponse();
| > | > .
| > | >
| > | >
| > | > "wa********@newsgroups.nospam" wrote:
| > | >
| > | >> Hello,
| > | >>
| > | >> I would like to do the following from a asp.net button click:
| > | >>
| > | >> <form method="POST"
| > | >> action="https://www.1234.com/trans_center/gateway/direct.cgi">
| > | >> <input type="hidden" name="Merchant" value="Merchant Name">
| > | >> <input type="hidden" name="OrderID" value="Unique OrderID value">
| > | >> <input type="hidden" name="email" value="Customers email address
| > | >> (OPTIONAL)">
| > | >> <input type="hidden" name="total" value="total calculated
transaction
| > | >> amount
| > | >> value">
| > | >> <input type="hidden" name="URL" value="http://Your Web Site
| > | >> Address/script
| > | >> name to receive variables">
| > | >>
| > | >> <input type="text" name="Cardname"><Br>
| > | >> <input type="text" name="Cardnum1"><Br>
| > | >> <input type="text" name="Cardnum2"><Br>
| > | >> <input type="text" name="Cardnum3"><Br>
| > | >> <input type="text" name="Cardnum4"><Br>
| > | >> <input type="text" name="NameonCard"><Br>
| > | >> <input type="text" name="Cardstreet"><Br>
| > | >> <input type="text" name="Cardcity"><Br>
| > | >> <input type="text" name="Cardstate"><Br>
| > | >> <input type="text" name="Cardzip"><Br>
| > | >> <input type="text" name="Cardcountry"><Br>
| > | >> <input type="text" name="CardexpM"><Br>
| > | >> <input type="text" name="CardexpY"><Br>
| > | >> <input type="text" name="CVV2"><Br> </form>
| > | >>
| > | >>
| > | >> I know that this can be done from inside the HTML but I would
like
to
| > do
| > | >> this same thing with VB.NET code inside a button click
subroutine.
| > | >>
| > | >> I am sure there is something inside the dot.net framework that
allows
| > | >> this.
| > | >> I just dont know what it is.
| > | >>
| > | >> Thnaks for your help!
| > | >>
| > | >> Justin
| > | >>
| > | >>
| > | >>
| > |
| > |
| > |
| >
|
|
|

Nov 19 '05 #7
OK. Please feel free to let me know if you need any furhter assistance.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Reply-To: <wa********@newsgroups.nospam>
| From: <wa********@newsgroups.nospam>
| References: <Os*************@TK2MSFTNGP10.phx.gbl>
<0E**********************************@microsoft.co m>
<#S**************@TK2MSFTNGP10.phx.gbl>
<hY**************@TK2MSFTNGXA01.phx.gbl>
<OF**************@TK2MSFTNGP12.phx.gbl>
<at**************@TK2MSFTNGXA01.phx.gbl>
| Subject: Re: How do I perform an HTML POST from a button using vb.net
code?
| Date: Tue, 1 Nov 2005 02:25:14 -0800
| Lines: 311
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| X-RFC2646: Format=Flowed; Original
| Message-ID: <ef**************@tk2msftngp13.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft ngp13.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:135171
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Steven,
|
| I was using the beta2 version of asp.net 2.0. I just installed the
latest
| release version. I am going to try and see if it happens again. I will
let
| you know.
|
| Thanks,
|
| j
|
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:at**************@TK2MSFTNGXA01.phx.gbl...
| > Hi J,
| >
| > Thanks for your response.
| > I think this should be a page specific problems. Are you using the
| > httpwebRequest to programmatically request a ASP.NET 2.0 web page? If
so,
| > you can try requesting another simple page 1.x or 2.0 instead to see
| > whether you encounter the same problem. If it is confirmed to be a page
| > specific one, we can try isolate the page and them simplify the page to
| > narrow down the problem.
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| > --------------------
| > | Reply-To: <wa********@newsgroups.nospam>
| > | From: <wa********@newsgroups.nospam>
| > | References: <Os*************@TK2MSFTNGP10.phx.gbl>
| > <0E**********************************@microsoft.co m>
| > <#S**************@TK2MSFTNGP10.phx.gbl>
| > <hY**************@TK2MSFTNGXA01.phx.gbl>
| > | Subject: Re: How do I perform an HTML POST from a button using vb.net
| > code?
| > | Date: Fri, 28 Oct 2005 09:58:32 -0700
| > | Lines: 234
| > | X-Priority: 3
| > | X-MSMail-Priority: Normal
| > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | X-RFC2646: Format=Flowed; Original
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | Message-ID: <OF**************@TK2MSFTNGP12.phx.gbl>
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| > | Xref: TK2MSFTNGXA01.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:134571
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | Steven,
| > |
| > | I keep getting the following error:
| > |
| > | "The server committed a protocol violation. Section=ResponseHeader
| > Detail=CR
| > | must be followed by LF"
| > |
| > | I am using ASP.NET 2.0. Here is my code based on what you wrote:
| > | 'Receive Response
| > |
| > | Dim webResponse As HttpWebResponse
| > |
| > | webResponse = CType(webReq.GetResponse(), HttpWebResponse)
| > |
| > | Dim rdrReader As System.IO.StreamReader
| > |
| > | rdrReader = New System.IO.StreamReader(webResponse.GetResponseStre am)
| > |
| > | Dim responseHTML As String
| > |
| > | responseHTML = rdrReader.ReadToEnd
| > |
| > | Label1.Text = responseHTML
| > |
| > | I tried to do some searched on this error and I cant find any.
| > |
| > |
| > | Thanks,
| > |
| > | J
| > |
| > | "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| > | news:hY****************@TK2MSFTNGXA01.phx.gbl...
| > | > Hi J,
| > | >
| > | > After we call the HttpWebRequest.GetResponse() and the method
return,
| > | > we'll
| > | > get a HttpWebResponse object which contains the response data from
the
| > | > serverside. And all the response data stream can be retrieve
through
| > the
| > | > HttpWebResponse.GetResponseStream() method, e.g:
| > | >
| > | > HttpWebRequest request
| > | > ...........................
| > | >
| > | > HttpWebResponse response = request.GetResponse() as HttpWebResponse;
| > | >
| > | > System.IO.StreamReader reader = new
| > | > System.IO.StreamReader(response.GetResponseStream( ));
| > | >
| > | > string reponseHTML = reader.ReadToEnd();
| > | >
| > | > Thanks,
| > | >
| > | > Steven Cheng
| > | > Microsoft Online Support
| > | >
| > | > Get Secure! www.microsoft.com/security
| > | > (This posting is provided "AS IS", with no warranties, and confers
no
| > | > rights.)
| > | >
| > | >
| > | >
| > | > --------------------
| > | > | Reply-To: <wa********@newsgroups.nospam>
| > | > | From: <wa********@newsgroups.nospam>
| > | > | References: <Os*************@TK2MSFTNGP10.phx.gbl>
| > | > <0E**********************************@microsoft.co m>
| > | > | Subject: Re: How do I perform an HTML POST from a button using
| > vb.net
| > | > code?
| > | > | Date: Wed, 26 Oct 2005 17:22:48 -0700
| > | > | Lines: 141
| > | > | X-Priority: 3
| > | > | X-MSMail-Priority: Normal
| > | > | X-Newsreader: Microsoft Outlook Express 6.00.2900.2670
| > | > | X-RFC2646: Format=Flowed; Original
| > | > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670
| > | > | Message-ID: <#S**************@TK2MSFTNGP10.phx.gbl>
| > | > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | > | NNTP-Posting-Host: ip-206.159.118.137.hdiss.net 206.159.118.137
| > | > | Path:
| > TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP10.phx.gbl
| > | > | Xref: TK2MSFTNGXA01.phx.gbl
| > | > microsoft.public.dotnet.framework.aspnet:134157
| > | > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > | > |
| > | > | Robert,
| > | > |
| > | > | That works fine except that the response back is supposed to be
in a
| > | > query
| > | > | string of a GET method. How would I read that from the response
| > stream?
| > | > |
| > | > | Here is the code that I wrote based on your post:
| > | > |
| > | > | Dim webReq As HttpWebRequest =
| > | > |
| > | >
| >
CType(WebRequest.Create("https://www.goemerchant4.com/trans_center/gateway/d
| > | > irect.cgi"),
| > | > | HttpWebRequest)
| > | > |
| > | > | webReq.Method = "POST"
| > | > |
| > | > | webReq.ContentType = "application/x-www-form-urlencoded"
| > | > |
| > | > | Dim strInformation As String
| > | > |
| > | > | strInformation = "Merchant=17778" & _
| > | > |
| > | > | "&OrderID=1234567890" & _
| > | > |
| > | > | "&total=100.98" & _
| > | > |
| > | > | "&e**************@test.com" & _
| > | > |
| > | > | "&URL=http://togs.washoetech.net/member_pages/order-form.aspx" & _
| > | > |
| > | > | "&Cardname=Visa" & _
| > | > |
| > | > | "&Cardnum1=1234" & _
| > | > |
| > | > | "&Cardnum2=5678" & _
| > | > |
| > | > | "&Cardnum3=9012" & _
| > | > |
| > | > | "&Cardnum4=3456" & _
| > | > |
| > | > | "&NameonCard=John Doe" & _
| > | > |
| > | > | "&Cardstreet=1234 Happy Lane" & _
| > | > |
| > | > | "&Cardcity=Reno" & _
| > | > |
| > | > | "&Cardstate=Nevada" & _
| > | > |
| > | > | "&Cardzip=89502" & _
| > | > |
| > | > | "&Cardcountry=US" & _
| > | > |
| > | > | "&CardexpM=09" & _
| > | > |
| > | > | "&CardexpY=06" & _
| > | > |
| > | > | "&CVV2=123" & _
| > | > |
| > | > | "&e**************@test.com"
| > | > |
| > | > | Dim bytes As Byte() =
| > System.Text.Encoding.UTF8.GetBytes(strInformation)
| > | > |
| > | > | webReq.ContentLength = bytes.Length
| > | > |
| > | > | Dim requestStream As System.IO.Stream = webReq.GetRequestStream
| > | > |
| > | > | requestStream.Write(bytes, 0, bytes.Length)
| > | > |
| > | > | requestStream.Close()
| > | > |
| > | > | Thanks
| > | > |
| > | > | J
| > | > |
| > | > | "Robert Burdick [eMVP]"
| > <Ro***************@discussions.microsoft.com>
| > | > wrote
| > | > | in message
| > news:0E**********************************@microsof t.com...
| > | > | > using System.Net;
| > | > | > using System.IO;
| > | > | >
| > | > | > request = (HttpWebRequest)WebRequest.Create(url);
| > | > | > request.Method = "POST";
| > | > | > request.ContentType = "application/x-www-form-urlencoded";
| > | > | > String data_to_post = "action=insert&first_name="+first_name+.;
| > | > | > byte[] bytes = System.Text.Encoding.UTF8.GetBytes(data_to_post);
| > | > | > request.ContentLength = bytes.Length;
| > | > | > request_stream = request.GetRequestStream();
| > | > | > request_stream.Write(bytes, 0, bytes.Length);
| > | > | > request_stream.Close();
| > | > | >
| > | > | > //Read the server response
| > | > | > response = (HttpWebResponse)request.GetResponse();
| > | > | > .
| > | > | >
| > | > | >
| > | > | > "wa********@newsgroups.nospam" wrote:
| > | > | >
| > | > | >> Hello,
| > | > | >>
| > | > | >> I would like to do the following from a asp.net button click:
| > | > | >>
| > | > | >> <form method="POST"
| > | > | >> action="https://www.1234.com/trans_center/gateway/direct.cgi">
| > | > | >> <input type="hidden" name="Merchant" value="Merchant Name">
| > | > | >> <input type="hidden" name="OrderID" value="Unique OrderID
value">
| > | > | >> <input type="hidden" name="email" value="Customers email
address
| > | > | >> (OPTIONAL)">
| > | > | >> <input type="hidden" name="total" value="total calculated
| > transaction
| > | > | >> amount
| > | > | >> value">
| > | > | >> <input type="hidden" name="URL" value="http://Your Web Site
| > | > | >> Address/script
| > | > | >> name to receive variables">
| > | > | >>
| > | > | >> <input type="text" name="Cardname"><Br>
| > | > | >> <input type="text" name="Cardnum1"><Br>
| > | > | >> <input type="text" name="Cardnum2"><Br>
| > | > | >> <input type="text" name="Cardnum3"><Br>
| > | > | >> <input type="text" name="Cardnum4"><Br>
| > | > | >> <input type="text" name="NameonCard"><Br>
| > | > | >> <input type="text" name="Cardstreet"><Br>
| > | > | >> <input type="text" name="Cardcity"><Br>
| > | > | >> <input type="text" name="Cardstate"><Br>
| > | > | >> <input type="text" name="Cardzip"><Br>
| > | > | >> <input type="text" name="Cardcountry"><Br>
| > | > | >> <input type="text" name="CardexpM"><Br>
| > | > | >> <input type="text" name="CardexpY"><Br>
| > | > | >> <input type="text" name="CVV2"><Br> </form>
| > | > | >>
| > | > | >>
| > | > | >> I know that this can be done from inside the HTML but I would
| > like
| > to
| > | > do
| > | > | >> this same thing with VB.NET code inside a button click
| > subroutine.
| > | > | >>
| > | > | >> I am sure there is something inside the dot.net framework that
| > allows
| > | > | >> this.
| > | > | >> I just dont know what it is.
| > | > | >>
| > | > | >> Thnaks for your help!
| > | > | >>
| > | > | >> Justin
| > | > | >>
| > | > | >>
| > | > | >>
| > | > |
| > | > |
| > | > |
| > | >
| > |
| > |
| > |
| >
|
|
|

Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Kathy | last post by:
Can someone help me with the code to take the data in four fields on an HTML form and add it to a table in a database on an intranet. Thanks to all who help! Kathy
2
by: Hazzard | last post by:
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the client side, I lose the new value of the textbox when...
17
by: Lloyd Sheen | last post by:
This IDE is driving me nuts. I needed another button so I copied an existing one, changed the Text and the id and position by drag and drop. Well then I run and get the following: Control...
15
by: Nathan | last post by:
I have an aspx page with a data grid, some textboxes, and an update button. This page also has one html input element with type=file (not inside the data grid and runat=server). The update...
4
by: Lee Chapman | last post by:
Hi, Can anyone tell me why in the code below, the call to ClearChildViewState() has no effect? To paraphrase the code: I'm using view state. I have a textbox and a submit button (and a label...
6
by: john | last post by:
The standard method to transmit a file from an aspx page to a browser is to stream the file to the response then end the response. The HTML code generated by the aspx page is discarded, and the...
7
by: thersitz | last post by:
I can't seem to get my html form to submit properly from within a web form. Here's my form tag syntax and some delivery hidden fields. <form id="myForm"...
7
by: tapanreddy | last post by:
I am looking to perform an action when we close the window using the close tab at the top of the screen. I know how to do it using a close button but I was wondering if there is way to achieve the...
19
Atli
by: Atli | last post by:
Introduction At some point, all web developers will need to collect data from their users. In a dynamic web page, everything revolves around the users input, so knowing how to ask for and collect...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.