Nitin Chopra 30.Jul.12 05:37 AM a Web browser Applications DevelopmentAll ReleasesWindows Vista
Hi,
Through Browser control we can navigate to a particular url,
I want to HTTP POST data such as form data by using this method.
In vb i can do in this way.
Dim encoding As System.Text.Encoding = System.Text.Encoding.UTF8
Dim postdata() As Byte = encoding.GetBytes(recccurprop)
Browser.Navigate(url, "_self", postdata, "Content-Type: application/x-www-form-urlencoded\r\n")
As you can see postdata is an array of bytes,
Is there any way we can stream the data similarly in lotusscript, so that we can post data l?