コード例 #1
0
ファイル: SearchController.cs プロジェクト: Weej1/geekinside
 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");
 }
コード例 #2
0
ファイル: SearchController.cs プロジェクト: Weej1/geekinside
 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");
 }