if (!string.IsNullOrEmpty(Request.Params["pageIndex"]))
{
selectedPageIndex = int.Parse(Request.QueryString["pageIndex"]);
}
if (!string.IsNullOrEmpty(Request.Params["unit"]))
{
unitFilter = (string)Request.Params["unit"];
}
if (!string.IsNullOrEmpty(Request.Params["level"]))
{
levelFilter = (string)Request.Params["level"];
}
if (!string.IsNullOrEmpty(Request.Params["entry"]))
{
entryFilter = (string)Request.Params["entry"];
}
if (!string.IsNullOrEmpty(Request.Params["language"]))
{
languageFilter = (string)Request.Params["language"];
}