Hi all

ok my registration page for ecommerce is the final page before going to credit card gateway

The customer fills in all there details on my site and i then pass them to the gateway

i would like to do this in code if possible and will httpwebrequest handle what i want to do

VB Code:
  1. Dim myRequest As HttpWebRequest = CType(HttpWebRequest.Create("http://www.creditcardgateway.com/"), HttpWebRequest)
  2.             myRequest.AllowAutoRedirect = False
  3.             myRequest.Method = "POST"
  4.             myRequest.ContentType = "application/x-www-form-urlencoded"
  5.  
  6. 'Create post stream
  7.             Dim RequestStream As Stream = myRequest.GetRequestStream()
  8.             Dim SomeBytes() As Byte = Encoding.UTF8.GetBytes(strToSend)
  9.  
  10.             RequestStream.Write(SomeBytes, 0, SomeBytes.Length)
  11.             RequestStream.Close()
  12.  
  13.             'Send request and get response
  14.             Dim myResponse As HttpWebResponse = CType(myRequest.GetResponse(), HttpWebResponse)

but the real question is how to take the user to the page once ive posted the stuff

????