05/03/23 01:01:41
ブラウザコントロール(?)を利用してデータをPOSTで送信しているのですが、
特定のコード(Chr(81)~Chr(9F))が00に化けてしまいます。
コードはこのような感じです。
Dim sendPOST As Object
Dim i As Integer
sendPOST = "test="
For i = 0 To 255
sendPOST += Chr(i)
Next i
sendPOST = Encoding.GetEncoding("Shift-JIS").GetBytes(sendPOST)
AxWebBrowser1.Navigate2("URLリンク(xxxxxxxxxxx)", "", "", sendPOST, "")
化けない方法はありますか?