I created a special ASP.NET folder called App_Code in my MVC project. I added a new Helpers.vbhtml file that will contain reusable snippets of razor code.

Helpers.vbhtml
@Helper GetTime() @DateTime.Now End Helper
But this leads to a Type 'ASP.global_asax' is not defined. error Type 'ASP.global_asax' is not defined. (x2)

Nothing seems to have changed - the application is still compiling and starting up. What does this error mean?
source share