I have precompiled my web site project into a single dll for the whole site. When I run a page and look at:
Assembly.GetAssembly(this.GetType())
It is resolving as : App_Web_qgqyxtge
But when I make a call to:
Assembly.GetExecutingAssembly()
This resolves to :
Upload, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
I'm struggling to see why the assembly of the page I am looking at looks like a temporary asp.net dll and not the compiled dll that seems to be executing the current code?