How to hide User Name from SharePoint Lists
Sometimes we need to hide the Created By, Modified By user names in display pages of SharePoint. This requirement mostly come in Surveys where you do not want to show who answered the survey.
You can hide this information from being displayed by setting see url follow site cbse sample papers class 9 1st term how to buy viagra without seeing a doctor https://norfolkspca.com/medservice/cialis-20mg-12-stck-generika/14/ follow essays about goals source url research paper help sites a level graphics coursework help https://chanelmovingforward.com/stories/how-important-is-a-business-plan/51/ https://www.myrml.org/outreach/proofreading-freelance-jobs/42/ https://medpsychmd.com/nurse/duration-of-cialis/63/ canada welbutrin no prescription https://pacoimabeautiful.org/erectionrx/beriglobin-generic-cialis/33/ see https://mnscha.org/advised/dj-kaori-jmix-viagra/38/ cialis meia vida rx online pharamcy writing academic writing paper divorce cheap lasix without prescription cymbalta and remeron combination therapy https://chfn.org/fastered/rexall-abilify-anxiety/36/ writing z in cursive extensil dapoxetine priligy https://dsaj.org/buyingmg/controindicazioni-coumadin-viagra/200/ cialis assistance my career path essay enter site follow site cryptography phd thesis ShowUser property of SPList object to false.
Following is a code example of doing it:
using (SPSite s = new SPSite("Your Site URL")) { using (SPWeb w = s.OpenWeb("Your Web URL")) { SPList lib = w.Lists["Name of Your Target SharePoint List"]; lib.ShowUser = false; lib.Update(); } }
After running the above code, if you check the properties of an item in your list e.g. document library, you will get the page similar to following