hi,
i am trying to send text word using vb. net to java but the text word cannot send through. what should i do? below is the code that giving me the error
Dim msg As String = Txtinput.Text
Dim data As Byte() = System.Text.Encoding.ASCII.GetBytes(msg)
client.Send(data)


Reply With Quote