Should I deploy Glimpse to the production site?
I believe if the cookie for Glimpse is not found it doesn’t load or do anything so performance should be negligible. Security wise you can just set a user restriction in the web.config for the location of the glimpse path. <location path=”Glimpse.axd” > <system.web> <authorization> <allow users=”Administrator” /> <deny users=”*” /> </authorization> </system.web> </location> Or … Read more