-----http://support.microsoft.com/kb/311294-----
cFlavor = cboFlavor.SelectedItem
cParamFlavor = "Flavor="
cSeparator = "&"
cParamName = "FName="
cPostData = cParamName & txtBoxName.Text &
cSeparator & cParamFlavor & cFlavor
vHeaders = "Content-Type:
application/x-www-form-urlencoded" + Chr(10) + Chr(13)
vPost = ASCIIEncoding.ASCII.GetBytes(cPostData)
AxWebBrowser1.Navigate2("http://<server>/WebForm1.aspx",
Nothing, Nothing, vPost, vHeaders)
It has an of_Navigate function that calls Navigate. You should be able to
add Navigate2 by following my example.
<Tommy Liu> wrote in message news:49e88723.107...@sybase.com...
I found one PB function which works as same as
'ASCIIEncoding.ASCII.GetBytes'
vHeaders = "Content-Type:application/x-www-form-urlencoded"
+ Char(10) + Char(13)
lbob_post = BLOB(as_postdata, EncodingUTF8! )
ole_WebLinker.Object.Navigate(ls_url , "None",
"TargetFrame", lbob_post, vHeaders)
Tommy