Well Peter you were right it works flawless ...
Btw, i tried with this code but it seems like it couldnt help me much
Code:
Dim getValues as String = "http://www.domain.com/reg_final.php?ref=crm836&email=" & Session("myEmail") & "&fname=" & Session("myfName") & "&lname=" & Session("mylName") & etc....."
Dim request As Net.HttpWebRequest = Net.WebRequest.Create(getValues)
With request
.ContentType = "application/x-www-form-urlencoded"
.Method = "GET"
End With
Thanks a millions ;)
Btw, how to get the response in XML format ... say i tried something like this but it throws me an error all the time:
Code:
Dim response As Net.HttpWebResponse
' Obtain the response, e.g. the XML doc
response = CType(request.GetResponse(), Net.HttpWebResponse)
' Obtain the response strema
Dim s As IO.Stream = response.GetResponseStream
' Load the stream into a new dataset
Dim ds As New DataSet
ds.ReadXml(s) 'this line get an error msg
Thanks in advance :)