I made an HttpPost to "https://portal.sibt.nsw.edu.au/Default.asp"
HttpClient client = new DefaultHttpClient();
String URL = (String) "https://portal.sibt.nsw.edu.au/Default.asp";
HttpPost post = new HttpPost(URL);
When executed in a the background
HttpResponse response = client.execute(post);
Log.d("Response", response.toString());
logCat displays this "org.apache.http.message.BasicHttpResponse@413f0a28"
how do i display the resulting page, which should be this "https://portal.sibt.nsw.edu.au/std_Alert.asp" when accessed from a pc.