vb.net - Error 502 when sending base64_encode to the web -


i'm encoding text base64 encode, when send request server 502 error. example server follows: domain .com/?data=data encode looking forward helping problem, how fix it? tried post still made form unresponsive. code encode

private sub base64en()     dim bytestoencode byte()     bytestoencode = encoding.utf8.getbytes(reend)     dim encodedtext string     encodedtext = convert.tobase64string(bytestoencode)     reend = encodedtext end sub 


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -