Uncompiled asp.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have found that webmatrix style uncompiled aspx code can be nice for
maintenance purposes because quick fixes can be made by just tweaking text
files on the server. However, I like the power of compiled code - especially
having helper libraries that are available to all pages. Does anyone know a
way to make uncompiled helper libraries available to all of the pages in a
project?
 
The only problem it will be compiled by ASP.NET in a background.
And after about 15 chages (whcen you click 15 times save) your application will restart.

So there is not much benefit

George.



I have found that webmatrix style uncompiled aspx code can be nice for
maintenance purposes because quick fixes can be made by just tweaking text
files on the server. However, I like the power of compiled code - especially
having helper libraries that are available to all pages. Does anyone know a
way to make uncompiled helper libraries available to all of the pages in a
project?
 
I have found that webmatrix style uncompiled aspx code can be nice for
maintenance purposes because quick fixes can be made by just tweaking
text
files on the server. However, I like the power of compiled code -
especially
having helper libraries that are available to all pages. Does anyone
know a
way to make uncompiled helper libraries available to all of the pages
in a
project?

Check out using SRC="" in your page directive. Then, reference the
same file for all of your pages.


<%@ Page Language="VB" Src="classes/functions.vb" %>
 
Back
Top