A
Andreas Zita
I don't understand how to access my global objects?
I have this global.asax file:
<%@ Application Codebehind="Global.asax.cs" Inherits="AlbumService.Global"
%>
<object id="AlbumSettings" runat="server" class="AlbumService.Settings"
scope="Application" />
According to http://www.csharphelp.com/archives/archive206.html the object
should be available everywhere in this Application through a Property named
"AlbumSettings" after the object-id? But I just keep getting this
error-message:
"The type or namespace name 'AlbumSettings' could not be found (are you
missing a using directive or an assembly reference?)"
Im using VS.NET 2003 and C#.
/Andreas
I have this global.asax file:
<%@ Application Codebehind="Global.asax.cs" Inherits="AlbumService.Global"
%>
<object id="AlbumSettings" runat="server" class="AlbumService.Settings"
scope="Application" />
According to http://www.csharphelp.com/archives/archive206.html the object
should be available everywhere in this Application through a Property named
"AlbumSettings" after the object-id? But I just keep getting this
error-message:
"The type or namespace name 'AlbumSettings' could not be found (are you
missing a using directive or an assembly reference?)"
Im using VS.NET 2003 and C#.
/Andreas