public static function getSocierytypeList2($searchtext, $page)
 {
     $pagestart = $page == 0 ? 0 : ($page - 1) * 5;
     $pageEnd = $page * 5;
     if (strtolower($searchtext) == "search" || $searchtext == "") {
         $obj_retResult = DAL_manageSocierytype::getAllSocierytype($pagestart, $pageEnd);
     } else {
         //*			$obj_retResult = BL_manageSocierytype::searchSocierytypeBySocieryTypeId($searchtext);
     }
     $html = "<div class=\"subheader\" >Socierytype List</div>";
     if ($obj_retResult->type == 1) {
         $arr_userList = $obj_retResult->data;
         $html .= "<div ><table cellpadding=\"0\" cellspacing=\"0\"><tr>";
         $html .= "<th></th>";
         $html .= "<th>SocieryTypeId</th>";
         $html .= "<th>SocieryTypeName</th>";
         $html .= "<th>Description</th>";
         $html .= "</tr>";
         foreach ($arr_SocierytypeList as $obj_Socierytype) {
             $html .= $obj_Socierytype->drawTableViewSocierytype();
         }
         $html .= "</table></div>";
     } else {
         $html = "No user found";
     }
     return $html;
 }