tengo el siguiente codigo
en el cliente
<div id="contenidoAjax" class="contenidoAjax">
<img id="d" alt="" src="../images/ajax-loader.gif" />
</div>
$(document).ready(function () {
$('#contenidoAjax').hide();
$('#contenidoAjax').ajaxStart(function () { $(this).show(); }); //this method for ajax start
$('#contenidoAjax').ajaxStop(function () { $(this).hide(); }); //this method for ajax stop
$("#btnBuscar").click(function () {
params.condicion = $("#SelectCondicion").val();
$.ajax({
type: "POST",
url: "pagina.aspx/Get_Datos",
data: JSON.stringify(params),
contentType: "application/json; charset=utf-8",
dataType: "json",
async: true,
success: function (response) {
.
.
.
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus + ": " + XMLHttpRequest.responseText);
}
)};
)};
que me falta para que funcione?
QUIERO MATAR ESTA DUDA ... ANTES QUE EL MUNDO DEJE DE EXISTIR..