Hi All, I am in trouble with the problem given below, please help me. I want to display the content given in asp file test.asp test.asp content is <% strResult = "" strCityCode = Trim(request.querystring("ccode")) strFromDate = Trim(request.querystring("fromdt")) strToDate = Trim(request.querystring("todt")) query executions ' the result will set to the variable "strResult" response.write strResult %> I called this file using jquery method given below, <script language="JavaScript" type="text/javascript"> function funcGetProviderAllRooms(strCCode, strFromDt, strToDt) { document.getElementById("divDetailLoading").innerHTML = "<img border=\"0\" src=\"/images/detail_loading.gif\" /> Please wait..."; $.get("getAvailableProviderRooms.asp", { ccode : strCCode, fromdt : strFromDt, todt : strToDt, tempref : Math.random() }, function(data){ document.getElementById("divSearchResultBox").innerHTML = data; document.getElementById("divDetailLoading").innerHTML = " "; } ); } funcGetProviderAllRooms('TEST',20/05/2009,25/05/2009); </script> but the result doesn't display on the div specified in the code. Please give me solution as soon as possible Thanks in advance.... Regards, spm