new to ASP.Net 2.0

R

Raymond Du

Hi,

I just migrate to ASP.Net 2.0, is it true ASP.Net 2.0 web project does not
generate DLL? I don't see any DLL after I built a solution using VS.Net
2005.

TIA
 
M

Morten Wennevik [C# MVP]

Hi Raymond,

It is true that the default compilation in Visual Studio 2006 of a web
project does not create a dll for web page code, as opposed to Visual
Studio 2003. You can however compile the code files by "publishing" the
web application. Right click your project and select "Publish Web Site"
(or select it from the Build menu). Visual Studio will then create all
necessary files to run your web application and put it in a folder of your
choice (which can be moved later on). When publishing you get to chose
between compiling just the code-behind files (just the aspx.cs files),
updatable, leaving the aspx file untouched, or compile both aspx and
aspx.cs.
 
D

Daniel

There is a visual studio 2006?


Morten Wennevik said:
Hi Raymond,

It is true that the default compilation in Visual Studio 2006 of a web
project does not create a dll for web page code, as opposed to Visual
Studio 2003. You can however compile the code files by "publishing" the
web application. Right click your project and select "Publish Web Site"
(or select it from the Build menu). Visual Studio will then create all
necessary files to run your web application and put it in a folder of your
choice (which can be moved later on). When publishing you get to chose
between compiling just the code-behind files (just the aspx.cs files),
updatable, leaving the aspx file untouched, or compile both aspx and
aspx.cs.
 

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

Top