The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
288 views

Compile ascx files into DLL at runtime

In our ASP.NET application we allow other developers to write asp.net code and we compile their code into in-memory dll. As part of this we would like to be able to compile ASCX controls into DLL at ...
1
vote
1answer
162 views

No compile errors generated for inline C# code in web page

I have a aspx web page with no code behind and a few inline C# methods (webmethods) for a mostly static page. The following lines of code would return a compile time error were it placed in a code ...
0
votes
1answer
117 views

Using ASP.Net templates outside of ASP.Net?

As a brief intro, I spent the last few days writing my own template parser/compiler. It's been an interesting project (which I plan to continue) but it sparked some curiosity about how ASP.Net (ASPX, ...
0
votes
1answer
37 views

error making dll

I created ASP.NET pages using C# code when I compile the (.csproj file) code using COMPILE.BAT file it shows me compilation error with error code cs1303 [ "Label01" not found, "TextBox01" not found" ...
2
votes
4answers
2k views

Using the aspnet_compiler.exe to compile .Net Web Apps

I have code in the top layer of my .Net web application that I'd like to unit test, but when my build server compiles the project using the aspnet_compiler.exe, it makes a .dll file that is not at all ...
0
votes
1answer
484 views

Can you precompile and merge part of an ASP.NET website and then continue development?

A big part of the web site is precompiled and merged, since it's almost never going to change. The precompiled bits can be replaced in case of updates to the original. I want to continue development ...
4
votes
6answers
2k views

Precompilation and startup times on ASP.Net

I am developping a (relatively small) website in ASP.Net 2.0. I am also using nAnt to perform some easy tweaking on my project before delivering executables. In its current state, the website is ...