January 07, 2006

Enabling just in time compilation on web page

To enable just in time compilation, edit your .aspx file and find the line similar to:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="webform1.aspx.vb" Inherits="webform1" %>

Replace the "CodeBehind" with "Src" so the line looks like:

<%@ Page Language="vb" AutoEventWireup="false" Src="webform1.aspx.vb" Inherits="webform1" %>