Single page assembly model problem

  • Thread starter Thread starter Guest
  • Start date Start date
not sure what the problem is you want to solve.

asp.net creates a dll per page. in web site mode, the code behind is a
partial class file included in the page dll. in application mode, the
code behinds are all compiled into one dll by visual studio and placed
in the bin folder, and the page (.aspx) is compiled into a dll that
inherits from the class in the common dll.

so in site mode a single page site will have one dll, a web application
site will have two.

-- bruce (sqlwork.com)
 
Back
Top