| Thread | Last Post | Replies |
|
| Embeded Server Controls in a Custom Templated Control | 29 Sep 2004 17:08 GMT | 1 |
I have created a templated control. As far as the control is concerned I am able to put any HTML inside each template. However, I can't seem to figure out how to embed a server control to it. When I compile and run it shows up, but I can't wire up any kind of event to it. I ...
|
| custom validator and ControlToValidate in a composite control... | 29 Sep 2004 09:46 GMT | 1 |
The ControlToValidate property is wrecking my head. I have a custom composite server control defined as follows: internal abstract class MyControlBase : Control, INamingContainer {...}
|
| adding a design time designerto a specific property | 28 Sep 2004 22:54 GMT | 1 |
I added an image property to my custom control. the property type i set at as string because I want the url that is to be used for the control. How do I set for this image property when the developer is in the properties window and clicks to enter this value for the property, the ...
|
| How can I persist the state of a DropDownList control | 28 Sep 2004 21:39 GMT | 1 |
I"m develop a custom control (render). It inherits a ListControl. In the Render method, I apply an ArrayList to the DataSource property and call the DataBind method. So, how can I get the SelectIndexChanged event?
|
| Custom CheckBoxList "Length cannot be less than zero" error | 28 Sep 2004 16:57 GMT | 4 |
Hello I have a custom CheckBoxList control so I can add attributes to listitems.... All works fine and I have a RadioButtonList that does the same, but for this when postingback multiple times and then changing the
|
| Placement of Controls | 27 Sep 2004 18:46 GMT | 2 |
I have placed 3 web user controls on a page, a header, a navigation and a products control. Each control is contained in a row and cell in a table. The header and navigation controls work fine, but the products control is displayed at the top of the page instead of inside the table ...
|
| How to use "~" for approot | 27 Sep 2004 15:13 GMT | 2 |
Hello, i have a control i wrote which inherits from the ImageButton control. On the ImageButton.ImageUrl property, you can use "~" to represent the root of your application (vs. the domain root), so if my app resides @ www.myserver.com/myapp/ and i put in an image i can set its ...
|
| Build a dynamic menu for asp.net page | 27 Sep 2004 13:51 GMT | 1 |
I will do a dynamic menu for a asp.net app.. I don't know yet if how I will get the data for populate this menu: from a sql server database, xml file or what, but I know it will be dynamic any probably encapsulated in a control (user or custom).
|
| How to make a menu component? | 27 Sep 2004 13:49 GMT | 1 |
I need to make a menu componen like this page www.f135.com They made the menu on Javascript and I already have the code to make that menu in javascript, but I want to make a menu so that the user can make any nodes and subnodes.
|
| Using .resx resources | 27 Sep 2004 01:24 GMT | 1 |
I've built a ASP.NET control that stores some info (an XSLT transform) in a .resx file in the assembly that also has the control. However, I've read the following in MSDN documentation a few times, "Only .resources files should be embedded in common language runtime assemblies and ...
|
| How do I keep a control from initializing every time? | 24 Sep 2004 19:46 GMT | 1 |
I have a header control at the top of my default page. On this control there are 4 buttons, each one displays a corresponding panel. There also is a drop down list with a list of counties. The list of counties is filled from a dataset when the page loads. The user selects a
|
| Datasets & Controls | 23 Sep 2004 23:43 GMT | 2 |
I have 5 controls on a page, each having it's own connection to a database and different queries per control. Each control is displayed by the user clicking on a menu. Simple enough. However, because they are all on one page, each connection and dataset is
|
| Why can't I override RenderBeginTag? | 22 Sep 2004 20:25 GMT | 1 |
I'm trying to make a custom control. I started off basing it on a ListBox, but because of the bug in that control that prevents it from rendering name/value pairs, I decided to use an HTMLSelect instead. But when I changed it, I started getting an error:
|
| Determine if custom control is being added dynamically? | 22 Sep 2004 18:04 GMT | 2 |
Is it possible to determine in your custom control code if it is being added to the control hierarchy through page parsing or being added dynamically via code. Thanks
|
| Repeater paging problem | 22 Sep 2004 11:50 GMT | 1 |
I'm trying to do the following but I can't understand what's wrong. Could you help me here! I do paging with a Repeater like this: DataSet ds = new DataSet();
|