ASP.NET - Propiedad obj nula

 
Vista:

Propiedad obj nula

Publicado por Sara Paloma Salas Sanchez (1 intervención) el 07/03/2013 07:07:43
Hola a todos,

Tengo una duda al agregar registros en un grid me manda un error al tener muchos registros, esta es la manera de invocar

function fn_initControls_LQ0() {
fbn_sLQ0_PC = $('#sLQ0_PC').fbn_PanelColapsable(
"fbn_sLQ0_PC",
"Liquidación",
"sccLiquidacion",
function () { var res = fn_EjecutarCMD("EnvioLiquidacion.aspx/WM_sLQ0_CMD", __ConsSeccion, -1, {}); eval(res.obj); },
undefined, // fn_ESQ_LimpiarSeccion
false
);

El codigo que regresa la propiedad obj es

public Resumen consultarResumen(int x = -1, object obj = null, Boolean esLectura = false)
{
Resumen res = new Resumen();

res.titulo = this.mostrarTituloMensajes();
res.mensajes = this.mostrarMensajes();
res.alertas = this.numAlertas;
res.errores = this.numErrores;

res.x = x;
res.esLectura = esLectura;

if (obj != null)
{
res.obj = obj;


}
return res;
}

A pesar de que regresa un valor al regresar a la funcion que lo invoca muestra nulo

Gracias de antemano por la respuesta.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder