Enviado por anonimo el día 28 de mayo de 2003
Tienes que hacer un urlencode del texto que tienes que enviar.
Te adjunto una funcion que hace el urlencode
Private Function URLEncode(str As String) As String
Dim strTemp, strChar As String
strTemp = \"\"
strChar = \"\"
Dim nTemp, nAsciiVal As Integer
For nTemp = 1 To Len(str)
nAsciiVal = Asc(Mid(str, nTemp, 1))
If ((nAsciiVal < 123) And (nAsciiVal > 96)) Then
strTemp = strTemp & Chr(nAsciiVal)
ElseIf ((nAsciiVal < 91) And (nAsciiVal > 64)) Then
strTemp = strTemp & Chr(nAsciiVal)
ElseIf ((nAsciiVal < 58) And (nAsciiVal > 47)) Then
strTemp = strTemp & Chr(nAsciiVal)
Else
strChar = Trim(Hex(nAsciiVal))
If nAsciiVal < 16 Then
strTemp = strTemp & \"%0\" & strChar
Else
strTemp = strTemp & \"%\" & strChar
End If
End If
Next
URLEncode = strTemp
End Function