System.Web.UI.Design

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139