| Thread | Last Post | Replies |
|
| CompositeControls and RecreateChildControls() | 28 Sep 2007 06:25 GMT | 1 |
I have a CompositeControl (called SimplePager) that creates an UpdatePanel in its CreateChildControls override. The CompositeControl uses two LinkButtons to control the forward/backward state. W/out the use of the UpdatePanel it works just great. However, as a learning
|
| composite control embedded resource at designtime | 25 Sep 2007 05:29 GMT | 1 |
In my protected override void CreateChildControls() I am trying to create an image control where the image is an embedded resource. Image img = new Image();
|
| Proper way to reload CompositeControl when its state must change after Postback | 20 Sep 2007 20:36 GMT | 1 |
I am creating a CompositeControl that contains a Table. The rows in the Table are controlled by an internal pager. The control renders the pager and the table. When the user clicks the pager, the control shows the next set of records in the table.
|
| GridView & CauseValidation | 19 Sep 2007 22:26 GMT | 1 |
I working through a book on ASP.Net, I added a GridView and SQLDataSource. Everything worked as expected upon debugging. The rows were displayed with the Update and Delete buttons on each row. Upon pressing update button on a row the row did go into edit mode. Changine a few ...
|
| CheckBoxList with Multiple selection set Declaratively | 13 Sep 2007 17:19 GMT | 2 |
I'd like to extend the CheckBoxList control so that I can set multiple selection declaratively. Right now, I'm thinking of simply giving it a string containing all the selected values, each values separated by a comma. So, baiscally I have this :
|
| event handler isn't working | 11 Sep 2007 21:17 GMT | 2 |
Hello, I am extending a webcontrol, and I need to generate an array of objects of type dropdownlist, whose event selectedindexchanged must fires an own method called Cbo_SelectedIndexChanged that has the same signature of selectedindexchanged of a normal dropdownlist. I already ...
|
| How to make Editor for ListItemCollection visible in VS2005 properties page? | 11 Sep 2007 13:13 GMT | 2 |
I'm trying to build a User Control in C# for ASP.NET 2.0. My user control contains two ListBoxes. I am exposing the Items property of each ListBox as public properties of my User Control. That part works ok. But, I can't get a collection editor to show for the items ...
|
| Localization ASP.NET WebControl question | 11 Sep 2007 03:35 GMT | 1 |
I'm developing a WebControl and I need to check the Page.Culture property in DESIGN time, in order to display the proper contents on the WebControl. I have run out of ideas of how to do it.
|
| TypeConverter Enum / CheckBox List | 11 Sep 2007 03:09 GMT | 4 |
Is their an easy way to create a TypeConverter for enums you want displayed as a CheckBox List. For example enum AllowTheseCars
|
| Confused about Assembly naming with Namespace | 09 Sep 2007 01:28 GMT | 1 |
OK - here's the situation - I want my namespace to be: MyCompanyName.Controls I want my custom web control to be called: MyControl (myControl.dll, or MyCompanyName.Controls.MyControl.dll - whatever
|
| Custom Control Embedded CSS | 06 Sep 2007 04:52 GMT | 7 |
I have a control that has an embedded CSS file. I override the OnPreRender event and put in the following code: HtmlLink cssLink = new HtmlLink(); .... get the resource, create the link
|
| Can't edit items' properties in CollectionEditor | 04 Sep 2007 21:30 GMT | 1 |
I'm dying here. I've scoured the internet and msdn documentation many times over, and I can't find anything to solve my problem. This is my last hope. I'm on hands and knees begging for help here ... I've got a custom control (Toolbar), that has an ArrayList collection
|
| Custom ListControl has no VS intellisense for <asp:ListItem> | 01 Sep 2007 14:45 GMT | 2 |
When I make a custom server control that inherits from ListControl or the other similar controls (DropDownList, CheckBoxList, etc.), I cannot get the child <asp:ListItem> control to show with the Visual Studio 2005 intellisense. The control does render the correct results and you ...
|