tags:

views:

421

answers:

1

Dear All, I am using the following jQuery code to fill my DIV in the ASPX page

   var div = $("#divPrice");  
   div.fadeOut('slow',function(){      
   div.load("../Lib/handlers/GetPrice.aspx?answers="+queryValues+"&item="+modelId,{ symbol: $("#txtSymbol" ).val() },function()
   {
      $(this).fadeIn('slow');                                           
   });

   });   
  $("#divBtns").fadeIn('slow');

This works fine. In Get price.aspx, it will return a HTML and it will be loaded in the div. Now i want to return another number along with this HTML to my javascript. How can i do that?

+3  A: 

please read these posts to get in depth knowledge about using jquery to play with asp.net.

TheVillageIdiot