Enable to SharePoint User Information List

  1. protected void EnableUSIList(object sender, EventArgs e)   
  2. {   
  3.       try   
  4.       {   
  5.             string strFields = "";   
  6.             //Context.Response.Output.Write("Clicked Me!");   
  7.             SPSite Site = SPContext.Current.Site;   
  8.             Context.Response.Output.Write(Site + "<br/>");   
  9.             using (SPWeb Web = Site.OpenWeb())   
  10.             {   
  11.                   Web.AllowUnsafeUpdates = true;   
  12.                   SPList List = Web.Lists["User Information List"];   
  13.                   Context.Response.Output.Write(List.ToString() + "<br/>");   
  14.                   List.Hidden = false;   
  15.                   List.Update();   
  16.                   Web.AllowUnsafeUpdates = false;   
  17.                   Context.Response.Output.Write(List.Hidden.ToString() + "<br/>");   
  18.   
  19.             }   
  20.       }   

  21.       catch (Exception ex)   
  22.       {   
  23.             Context.Response.Output.Write("Errors: " + ex.Message.ToString());   
  24.       }   
  25.   
  26. }