protected void cargarGrilla() { gvClientes.DataSource = from cli in ClienteQueryDao.Select() orderby cli.id_cliente select cli; gvClientes.DataKeyNames = new String[] { "id_cliente" }; gvClientes.DataBind(); }
protected void CargarGrilla(int?idLoc, DateTime?fecha) { //FILTROS: POR fecha, POR localidad, POR los que compraron por 1º vez en un periodo gvCliente.DataSource = from cli in ClienteQueryDao.SelectConFiltros(idLoc, fecha) orderby cli.id_cliente select cli; gvCliente.DataKeyNames = new String[] { "id_cliente" }; gvCliente.DataBind(); }