New to ASP.NET

  • Thread starter Thread starter Simon Wigzell
  • Start date Start date
S

Simon Wigzell

I have spent 2 years developing a website with ASP. Now has come the time to
make it available as a standalone package. Before I invest too much time in
ASP.NET can someone just answer some simple questions:

Will my server side ASP.NET code be compiled?
What is involved in converting from ASP to ASP.NET? I imagine it is
somewhere between Total rewrite from scratch and complete backward
compatibility no?

Are there any other solutions out there for me?

Thanks!
 
Compiled, yes. The code-behinds can be precompiled. The .aspx (and any
display pages) will be still in text.

Comversion, usually a rewrite. You can reuse the DB lookups, etc, but
basically a rewrite.
 
Back
Top