User-1106261384 posted
Thanks for your reply Danny117.
I found the solution on - http://steveloper.com/how-to-call-an-asp-net-web-page-from-android/
This is the perfect example to call a aspx page from Android application and give response from aspx page.
Its returning String value not the boolean, but solves my problem. Great Work by
Steve Loper
In this code instead of
Response.Headers.Add("AustinAndroidReturn","YourReturnValue")
add follwing code
if (response.containsHeader("AustinAndroidReturn"))
strMessage=((Header)response.getHeaders("AustinAndroidReturn")[0]).getValue();
else
{
strmessage = "No response";
}