If you wanted to read the results of the asp you could open a URL and then open a connection and read the data. For instance, to read this thread you could do:
URL url = new URL(<the asp page with attributes goes here>);
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String input = null;
while ((input = in.readLine()) != null)
System.out.println(input);
Which would print out the HTML response of the asp to your console.
Regards,
Charles