Tuesday, May 22, 2007

70-528 Notes [3]

http://fiddlertool.com is really cool debug tool
    • cassini is the standalone server.

HttpApplication->IHttpHandler (HttpContext)
<system.web>

<httpHandlers>
<add verb="*" path="*.xml" type="TypeName, Assembly" />

Aspx inherits from System.Web.UI.Page
implements IHttpHandler

System.Reflection.Assembly.getExecutingAssembly().Location.

This.GetType().FullName;
This.GetType().BaseType.FullName;

Demand Compilation:
==================
CodeFile is Page directive to autocompile
Inherits
App_Code is to


Precompilation:
==================
bin is precompiled.

No comments:

Thumbs Up to GitHub Copilot and JetBrains Resharper

Having used AI tool GitHub Copilot since 08/16/2023, I’ve realized that learning GitHub Copilot is like learning a new framework or library ...