Webparts dll?

  • Thread starter Thread starter brianroisentul
  • Start date Start date
B

brianroisentul

Hello,

I'd like to know which dll I have to reference when I use the
System.Web.UI.WebControls.Webparts namespace.

Thanks,

Brian
 
I should have specified that it's in system.web.dll

btw, VS 2005's Object Browser is great for finding out
in which dll a namespace resides.

Just search for the namespace and then highlight its container.

In this case, searching for System.Web.UI.WebControls.Webparts returns:

namespace System.Web.UI.WebControls.WebParts
Member of System.Web

Then, highlighting System.Web returns :

Assembly System.Web
Drive:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Web.dll





Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
Hello,

Thanks for your quick response Juan!

Adding the system.web.dll to the project doesn't allow me to use the
".Webparts" namespace, it works until "System.Web.UI.WebControls", but
after ".WebControls" nothing appears, do you know why is this
happening?

Thanks again,

Brian
 
Hello,
Thanks for your quick response Juan!

Adding the system.web.dll to the project doesn't allow me to use the
".Webparts" namespace, it works until "System.Web.UI.WebControls", but
after ".WebControls" nothing appears, do you know why is this
happening?

Thanks again,

Brian

What version of the framework are you using? v1.1 didn't have WebParts
yet.
The version is that "v2.0.50727" part in the dll-path Juan's reply.

Hans Kesting
 

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

Back
Top