Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Big Daddy #1
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
-
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... -
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. ... -
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... -
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... -
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... -
Gaurav Vaish \(www.EdujiniOnline.com\) #2
Re: Question about a user control derived from DropDownList
> It overrides a couple of functions. I want to include this
Can you elaborate?> 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.
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



Reply With Quote

