Ask a Question related to ASP.NET General, Design and Development.
-
nic #1
System.Web.UI.Design
I have been reading about creating custom controls and
many of them use the System.Web.UI.Design namespace. I
don't have access to it. How do I add the
System.Web.UI.Design to my project? (It doesn't show up
under my references and I don't see how to load it. I
have System.Web.UI loaded but there is no Design)
Any one else have this problem?
nic Guest
-
Nested System.Web.UI.Design.ControlDesigner
I've created some components that rennder themselves as table rows. They do not show up in the designer if I put them inside a table tag even if I... -
System.Web.UI.Design.UrlEditor
I have a derived UrlEditor class where I want the overriden filter property to select only the file ImageSource.aspx. Instead I'm shown all the... -
System.ComponentModel.Design.ArrayEditor - How to
I have a custom control which is a set of tab images like in hotmail. In my control I have a hard coded array that sets the string value of the... -
Can't Find System.Web.UI.Design??
Hello, I am trying to build a custom designer for a custom web control. I am even using source found out on MSDN to base it on. These designers... -
System.Web.UI.Design.ControlDesigner never calls GetErrorDesignTimeHtml on Exceptions
I can create a reproducer for this later, if needed, but I'm too aggravated at the moment. I have a control whose GetDesignTimeHtml method pretty... -
Ray Dixon [MVP] #2
Re: System.Web.UI.Design
Hi Nic,
Have you seen the walkthrough on creating a custom control? If not, it's
here:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbwlkwalkthroughcreatingcustomwebcontrols.asp[/url]
The System.Web.UI.Design namespace comes from System.Design.dll, so you
should just be able to use Imports or Using to get System.Web.UI.Design.
Good luck!
--
Ray Dixon - Microsoft MVP
[email]ray@NOSPAM.greeble.com[/email]
(remove NOSPAM. from my e-mail address for a direct reply)
"nic" <nic@multico.com> wrote in message
news:00e801c355f6$38a63bc0$a401280a@phx.gbl...> I have been reading about creating custom controls and
> many of them use the System.Web.UI.Design namespace. I
> don't have access to it. How do I add the
> System.Web.UI.Design to my project? (It doesn't show up
> under my references and I don't see how to load it. I
> have System.Web.UI loaded but there is no Design)
>
> Any one else have this problem?
Ray Dixon [MVP] Guest



Reply With Quote

