I am making an application which takes a URL with. *.asp extension and we pass it the required parameters and get some string result using POST method.
Any suggestions on how to achieve this?
UPDATED:
Actually I have a .net link which takes some POST Parameters and gives me a Result. How can I do that in Android?
HTTPResponse should do the trick:
Now you got a stream to work with, to write the data to a string:
Good luck!