i create a default project in mvc3 and published it on my host ,what about codes in file:
Global.asax after publishing there is a one line code in it:
where is the codes?
<%@ Application Codebehind="Global.asax.cs" Inherits="MvcApplication1.MvcApplication" Language="C#" %>
The code is in
Global.asax.cs. In Visual Studio if you you look next to theGlobal.asaxfile in your object explorer, there will be a down arrow. If you click that you should see theGlobal.asax.csfile. And just like any other file in VS, you can double-click that and it should open up that file containing your code.