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" %>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top