Dll files instead of my asp.net pages

  • Thread starter Thread starter Ray5531
  • Start date Start date
R

Ray5531

Is it possible to upload the dll of my asp.net project instead of all the
pages to my website?

What are the advantages and disadvantages?


Thanks
 
No, the DLL and the ASPX pages work together.

However, in ASP.NET 2.0 you'll be able to do what you describe. The only
real disadvantage is that every minor HTML change will require a recompile.
 
Hi Ray5531,

You must upload a copy of the *.aspx pages to your web server. However
the *.aspx.vb (in the case of VB.NET) can be compiled into a DLL and
uploaded to the web server instead of the *.aspx.vb files.
 
I don't think that will help much...
The application will have to be restarted after every recompile. This can
be problematic for large scale 24 hour web sites.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
 
Back
Top