| Thread | Last Post | Replies |
|
| Using a RadioButtonList Server Control in a Composite Control | 01 Aug 2006 00:04 GMT | 1 |
I have a composite server control that wrapps a RadiobuttonList. Which is populate from a Collection of Objects. The control is rendered and populated with data properly. On post back it redraws itself with preserving the selection from the user. But I
|
| Set property in user control | 31 Jul 2006 21:51 GMT | 1 |
I have a user control where I defined a boolean property. I tried to pass the property the following way: <aaa:MyControl runat="server" id="stan" IsReady="<%# booleanReady %>"/> However, that does not work. It looks like the "set" for the property does
|
| Custom control in toolbox, intellisense? | 27 Jul 2006 15:10 GMT | 3 |
Below is some custom control code to create a tab strip taken from ASP.NET 2.0 Unleashed by Stephen Walther. It works, but I need to clarify some things... 1.) Both "ServerTabs" and "ServerTab" appear in the VS toolbox when I add
|
| Designer/attributes for custom DataSource Control? | 26 Jul 2006 10:20 GMT | 1 |
I've developed my own datasource control. When I make my datasource control be the datasource of a formview control, I would like the formview control to prepopulate it's templates with controls representing the fields from my datasource control.
|
| How to create server control of Container Type | 26 Jul 2006 01:49 GMT | 1 |
I am trying to build one server control which has one panel and within this panel there will be two more panel. I have created two instance of MyPanel class (inherited by Panel), it works fine in design as well as runtime. The problem is I want user to be able to add controls on
|
| WebChat - customizing code assistance from a NEEEEEEWBIE | 25 Jul 2006 17:15 GMT | 3 |
Hi, I just added Steve Orr's incredible WebChat control to my page (ASP.NET 2.0), but I'm not advanced enough to correctly add the additional code for filters and identifying the user (I used CreateUserWizard for secure log-in). 1) TEXT FILTER. What is the correct syntax for the ...
|
| Design Time Rendering User Control? | 25 Jul 2006 15:34 GMT | 4 |
I've created a user control (not a custom control) consisting of a table with a single row containing three cells, each cell containing a button. Following is the code for this user control. <%@ Control Language="C#" AutoEventWireup="true"
|
| How to inherit a web user control | 24 Jul 2006 23:23 GMT | 1 |
I have create a web user control, which named base.ascx. I put three text box and a datagrid in this user control. How do I inherit this user control? chyong
|
| Dynamically setting selected item in control derived from DropDownList | 24 Jul 2006 23:04 GMT | 1 |
I wrote a control derived from the ASP.NET DropDownList. I want to be able to automatically databind the derived dropdown list and then programmatically set the selected item through a property in this control. I am not sure what the correct order of initialization should be. If ...
|
| Inheriting a control | 24 Jul 2006 05:10 GMT | 1 |
Hi, Firstly, I'm not using ASP , I'm using winForms but I can't seem to find a winforms building controls thread. If anybody knows of such a thread in this forum I'd be most grateful.
|
| How to remove a property? | 24 Jul 2006 04:54 GMT | 1 |
Is it possible to remove a property? For example, if you inherit from webcontrol then you have the CssClass property. But suppose i dont want to haveCssClass in the property inspector, can i remove it from the control.
|
| Databinding HierarchicalDataBoundControl | 23 Jul 2006 22:49 GMT | 1 |
I am trying to write a Hierarchical using HierarchicalDataBoundControl I have looked at both the treeview and menu but there implementations depend on custom dateItemContainers. I want to just use generic data binding. Could someone please help? I have attached the source code ...
|
| Problem with design time rendering in VS2005 | 23 Jul 2006 22:44 GMT | 1 |
I have made a server control to display the average rating for content by showing the number of stars. The problem i have is with the design time display in vs 2005. It seems the problem with the design time rendering is due to the calls to the databse helper class. Delete those ...
|
| ImageButton PostBack Help | 23 Jul 2006 15:39 GMT | 8 |
I cant figure out why this ImageButton doesn't post back the way a Button does. Can anyone explain to me why the RaisePostBackEvent() method doesn't get called here.. public class MyControl : CompositeControl, IPostBackEventHandler
|
| Custom Control As A Composite Control | 21 Jul 2006 22:29 GMT | 2 |
I'm building a custom control and I have an issue. My custom control has a (Server) TextBox control in it and my custom contol exposes a property named Text. I want my Text property displayed within my TextBox (So I basically set TextBox.Text property = Text (that is custom ...
|