You are on page 1of 1

11652203-9 OXOGXG

FROM [SIST_GESTDS].[dbo].[TBL_GBL_FICHAPERSONAL]

CON
SELECT TOP (1000) [ID_UBICACION]
,[NOMBRE_UBICACION]
FROM [SIST_GESTDS].[dbo].[TBL_PRM_UBICACIONESFISICAS]

$(document).ready(function() {
$('#<%= cbofactor.ClientID %>').change(function() {

alert($(this).val());

$.ajax({

type: "POST",
url: "Ficha.aspx/GetFactor",
data: JSON.stringify($(this).val()),
contentType: "application/json; charset=utf-8",
dataType: "json",

success: function (Result) {


var resp = Result.d;
$j("#cbosubfactor").html(resp)
},
error: function (Result) {
alert("error: " + Result.d);
}
});

You might also like