compilation error: ASP.global_asax could not be resolved
I got a problem on Umbraco site.
It says "The
base class or interface 'umbraco.Global' in assembly 'umbraco,
Version=1.0.3811.17115, Culture=neutral, PublicKeyToken=null' referenced
by type 'ASP.global_asax' could not be resolved".
I cannot remember from which version but if you have global.asax file it will not work you need to get rid of it. If you have any existing code that inherits from global you will need to update it to use IApplicationStartupHanlder instead. Is this a site you recently upgraded? Or have you added some new functionality that makes use of application_start from global?
compilation error: ASP.global_asax could not be resolved
I got a problem on Umbraco site.
It says "The base class or interface 'umbraco.Global' in assembly 'umbraco, Version=1.0.3811.17115, Culture=neutral, PublicKeyToken=null' referenced by type 'ASP.global_asax' could not be resolved".
Global.asax is placed on root directory.
Umbraco 6.0 is used. Any solutions?
Thanks
/J
Jivan,
I cannot remember from which version but if you have global.asax file it will not work you need to get rid of it. If you have any existing code that inherits from global you will need to update it to use IApplicationStartupHanlder instead. Is this a site you recently upgraded? Or have you added some new functionality that makes use of application_start from global?
Regards
Ismail
is working on a reply...