﻿function GetCurrentPrice(){$.ajax({url:"/WebService/HousePropertyHandle.asmx/GetCurrentPrice", data:{ID : PropertyID}, dataType: "xml", type: "POST", cache: false, success: function(rs){if(rs != null && $.text(rs) != null){$("#currentPrice").prepend($.text(rs));}}, error:function(xml,status){$("#currentPrice").prepend("---<br />");}});}
$(document).ready(function(){GetCurrentPrice();});