Global.asax not being Published.

J

Joe

Hello all!

I added a Global.asax to my application. I'm using the
Application_BeginRequest event. Everything works fine in my development
enviorment but when I publish the web site the Global.asax file doesn't get
published. If I manually copy it the event doesn't seem to get called.

Any idea what's going on here?

Thanks,
Joe
 
C

Cowboy \(Gregory A. Beamer\)

The global.asax, in .NET 2.0, is compiled. Check your bin folder on the
server and see if it is published. If you used single assemblies, you will
easily find it. If not, you might have to examine the cryptic naming scheme
to actually find global.asax compiled bits.

If it is not compiling, that is an issue. If it is compiling but not firing,
that is another issue.

If you want to copy the site out there, you can. It will compile page by
page, into memory, rather than use precompile IL (ala publish).
 
S

Steven Cheng [MSFT]

Hi Joe,

Yes, in ASP.NET 2.0 it by default use a dynamic compilation model for pages
and components. For global.asax, this is not a file that will be directly
visited by client browser, but be accessed by ASP.NET runtime internally.
Thus, when you publish the webiste(perform precompilation), the global.asax
will be generated as a class in assmbly and the global.asax file is removed.

here are some other reference about ASP.NET precompilation and global.asax
in ASP.NET 2.0

#Precompilation In ASP.NET 2.0
http://www.odetocode.com/Articles/417.aspx

#Fixing the Global.asax in ASP.NET 2.0
http://rossnelson.blogspot.com/2005/11/fixing-globalasax-in-aspnet-20.html

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.


--------------------
 
S

Steven Cheng [MSFT]

Hi Joe,

Do you have any further question on this?

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).


--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,011
Latest member
AjaUqq1950

Latest Threads

Top