Error message about something that does not exist in the application [closed]

-2

When running my application this message is appearing, but there is no such parameter. Here is the error message:

<%@ Application Codebehind="Global.asax.cs" Inherits="AgendaContato.MvcApplication" Language="C#" %> 
<%@ Application Codebehind="Global.asax.cs" Inherits="AgendaContato.MvcApplication" Language="C#" %>
    
asked by anonymous 06.11.2014 / 20:51

1 answer

1

Global.asax does not accept this declaration in duplicate:

<%@ Application Codebehind="Global.asax.cs" Inherits="AgendaContato.MvcApplication" Language="C#" %> 

Also check that the file is complete.

    
06.11.2014 / 21:33