Proyecto Fin de Carrera 2011
Capturador que obtiene los colectivos que aparecerán en la tabla

Namespace: EntornoWeb.Controllers
Assembly: EntornoWeb (in EntornoWeb.dll) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public ActionResult ObtenerColectivos(
	string sidx,
	string sord,
	int page,
	int rows,
	bool _search,
	string searchField,
	string searchOper,
	string searchString
)
Visual Basic
Public Function ObtenerColectivos ( _
	sidx As String, _
	sord As String, _
	page As Integer, _
	rows As Integer, _
	_search As Boolean, _
	searchField As String, _
	searchOper As String, _
	searchString As String _
) As ActionResult
Visual C++
public:
ActionResult^ ObtenerColectivos(
	String^ sidx, 
	String^ sord, 
	int page, 
	int rows, 
	bool _search, 
	String^ searchField, 
	String^ searchOper, 
	String^ searchString
)

Parameters

sidx
Type: System..::..String
Campo por el cual se ordenan los registros solicitados
sord
Type: System..::..String
Ordenación del listado (asc/des)
page
Type: System..::..Int32
Página solicitada
rows
Type: System..::..Int32
Número de registros solicitados
_search
Type: System..::..Boolean
Se reciben parámetros de filtrado
searchField
Type: System..::..String
Campo por el cual se filtra
searchOper
Type: System..::..String
Operador del filtro
searchString
Type: System..::..String
Cadena filtrada

Return Value

Colección con los colectivos solicitados

See Also