public void GetTableList()
 {
     ModuleController objModuleController = new ModuleController();
     List<KeyValue> objTableList = objModuleController.GetBasicTableName();
     StringBuilder tables = new StringBuilder();
     foreach (KeyValue objKey in objTableList)
     {
         tables.Append(objKey.Value.ToLower());
         tables.Append(",");
     }
     hdnTableList.Value = tables.ToString();
 }