Re: Posting to a form login page
Posted By:
John_Wang
Posted On:
Wednesday, September 5, 2001 08:31 AM
You forget to do something important:
In this case, you need do POST operation,
So, you should setup URLConnection with
code:
con.setDoOutput();
Only you do this can browser send out your POST message!!
Good luck.