WebControlLibrary vs ClassLibrary

  • Thread starter Thread starter Poobalam
  • Start date Start date
P

Poobalam

Hi,

I just got VS.NET 2005. It has a new template called
WebControlLibrary. I normally use ClassLibrary to build my business
logic and use that dll into ASP.NET project. However I'm assuming I
can use WebControlLibrary to build the business logic dll and use it
with ASP.NET. What is the main difference between WebControlLibrary vs
ClassLibrary?

Thanks
Poobalam
 
Keep using ClassLibrary for your business logic, WebControlLibrary is
for building new web UI controls
 
a WebControlLibrary project is designed to build a server web controls
(which is a type of a class libaray), it includes the references required,
and one template server web control.

-- bruce (sqlwork.com)
 
Back
Top