Question about a user control derived from DropDownList

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

  1. #1

    Default Question about a user control derived from DropDownList

    I posted this in a different group yesterday with no responses, so I'll
    try here.

    I have a simple control that is in a CS file (not ASCX). It is derived
    from DropDownList like this

    public class FiltersDropDown : DropDownList
    {
    ....

    }

    It overrides a couple of functions. I want to include this
    FiltersDropDown control in an ASPX file. I know how to use the "@
    register" directive to include an ASCX file, but it doesn't seem to
    work when the control is defined in a CS file. If I put the CS file in
    a library (DLL) I am able to access it, but I don't want to put it in a
    library; I just want to include it in the web site like a regular file.
    I have tried putting it in the root directory of the website, a custom
    subdirectory, or the app_code subdirectory, without any success. Any
    ideas? I am using ASP.NET 2.0

    Thanks in advance,
    John

    Big Daddy Guest

  2. Similar Questions and Discussions

    1. Dynamically setting selected item in control derived from DropDownList
      Hello, I wrote a control derived from the ASP.NET DropDownList. I want to be able to automatically databind the derived dropdown list and then...
    2. How create user control derived from Repeaetr
      Hello ALL. On my web form i have three Repeater controls. All of them have same style-sheet and first column that contains select image. ...
    3. dropdownlist postback to user control
      Using code-behind, I have a page "index.aspx" that has a user control mainHeader.ascx (with a language selection dropdownlist). Upon selecting a...
    4. passing values to custom user control from dropdownlist
      i have custom user control and i'm trying to pass values to custom user control......I need help it seems to me i cannot pass the value to user...
    5. question on DropDownList control.
      hi, a newbie question I have two dropdownlist controls, one is for years, 2000-2003, the other is for month, 1-12. I am supposed to get all the...
  3. #2

    Default Re: Question about a user control derived from DropDownList

    > It overrides a couple of functions. I want to include this
    > FiltersDropDown control in an ASPX file. I know how to use the "@
    > register" directive to include an ASCX file, but it doesn't seem to
    > work when the control is defined in a CS file. If I put the CS file in
    > a library (DLL) I am able to access it, but I don't want to put it in a
    > library; I just want to include it in the web site like a regular file.
    Can you elaborate?
    Control cannot be accssed from a 'cs' file.
    btw, how do you put the CS file in a DLL?


    --
    Happy Hacking,
    Gaurav Vaish | [url]www.mastergaurav.com[/url]
    [url]www.edujinionline.com[/url]
    [url]http://eduzine.edujinionline.com[/url]
    -----------------------------------------


    Gaurav Vaish \(www.EdujiniOnline.com\) 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