public ActionResult doAdvanceSearch(string sw, string sw_notinclude, string[] sw_doctype) { if (sw == null) { sw = ""; } if (sw_notinclude == null) { sw_notinclude = ""; } if (sw_doctype == null) { sw_doctype = new string[0]; } List<DocumentModel> docList = new BLLSearch().getResultWithFilter(new SearchFilterModel { sw = sw, sw_notincluded = sw_notinclude, sw_doctype = sw_doctype }); if (docList.Count == 0) { ViewData["docList"] = "nodata"; } else { ViewData["docList"] = docList; } return View("BasicSearchResult"); }
public ActionResult doBasicSearch() { string sw = Request.Form["sw"]; List<DocumentModel> docList = new BLLSearch().getResultBasicSearch(sw); if (docList.Count == 0) { ViewData["docList"] = "nodata"; } else { ViewData["docList"] = docList; } return View("BasicSearchResult"); }