Home All Groups Group Topic Archive Search About

System.Web.UI.Design namespace not found

Author
6 Feb 2006 9:44 AM
Allan Ebdrup
I'm trying to impelent a design time control for my webcontrol like
described here:
http://msdn2.microsoft.com/system.web.ui.design.containercontroldesigner.aspx

However the using statements:
using System.Web.UI.Design;
using System.Web.UI.Design.WebControls;

Give the error: "The type or namespace name 'Design' does not exist in the
namespace 'System.Web.UI' (are you missing an assembly reference?)"

I've added a reference to System.Web to the class library.
I'm using VS.Net 2005
Why can't I find the Design namespace?

Author
6 Feb 2006 10:24 AM
Albert Weinert
Allan Ebdrup schrieb:

> using System.Web.UI.Design;
> using System.Web.UI.Design.WebControls;
>
> Give the error: "The type or namespace name 'Design' does not exist in the
> namespace 'System.Web.UI' (are you missing an assembly reference?)"
>
> I've added a reference to System.Web to the class library.
> Why can't I find the Design namespace?

Don't know.

System.Design seems a good place to find the namespace:)

--
Freundliche Grüße

Albert Weinert

http://der-albert.com
Author
6 Feb 2006 10:32 AM
Allan Ebdrup
> System.Design seems a good place to find the namespace:)

That did the trick, thanks