I have a page that uses a jquery $.get() method to retrieve content from a remote page.
Ex
$(function(){
$.get("http://domain.com/script.axd",{parameter1: "value1",
parameter2: "value2"}, function(responseText){
alert(responseText);
});
});
The above script returns a null or empty string even though the called
page is returning "True" or "False" as string string.
Thanks for help in advance.

