Prevent Google analytics from gathering data in development environment, ASP.NET MVC

后端 未结 4 1323
情书的邮戳
情书的邮戳 2021-02-09 07:34

I have an ASP.NET MVC (3) app and I\'ve set Google analytics up. The problem is that every time I run from Visual Studio the Google script starts gathering data, which of course

4条回答
  •  我在风中等你
    2021-02-09 08:31

    You could also use HttpContext to only include the GA script if running in debug mode:

    @if (!HttpContext.Current.IsDebuggingEnabled)
    {
       
    }
    

提交回复
热议问题