| Thread | Last Post | Replies |
|
| Persisting DataSource on Postback using ViewState | 30 Sep 2003 16:33 GMT | 2 |
Ok, I've got a server control that implements custom databinding and generates a list of RadioButtons. (Yes, you'd think why not use the off the shelf RadioButtonList; because the RadioButtonList contains a collection of ListItems and not RadioButtons. We needed to disable a ...
|
| Find component in ASP.NET form at run-time | 30 Sep 2003 14:36 GMT | 2 |
At design-time, it's possible to use WebControl.Site.Container.Components to find a component (i.e., not a WebControl). At run-time, WebControl.Site always appears to be null. Is there a way to get access to the same information at run-time, so
|
| Should I use the PreRender event | 29 Sep 2003 21:38 GMT | 1 |
I have several user controls where I am not using viewstate. In the OnLoad, I call functions that will take the data out of the form fields and save the data into a session object. Then I display what is in the session object when the control is displayed to the client.
|
| Localized user web controls | 29 Sep 2003 01:41 GMT | 1 |
I'm actually building a web based localized system using asp.net 1.0 c# I have 2 questions: 1- Is there a way to access programatically the .aspx user main classes from a user web control ?
|
| Expandable properties in propertygrid not working | 26 Sep 2003 22:29 GMT | 11 |
I am trying to create expandable properties in the propertygrid for a custom control i am building but it wont work. I have derived my TypeConverter from ExpandableObjectoConverter. I have overridden : CanConvertFrom,ConvertFrom,ConvertTo,CanConvertTo. I know exactly what these
|
| Iteration over TableRowCollection -> list [...] modified exception | 26 Sep 2003 11:38 GMT | 1 |
I have a control that derives from WebControls.Table. This control has a method CreateTable() that builds a simple table. I also have second control that, again, derives from Table. This control instantiates an instance of the first control and then i want to copy all the rows of ...
|
| Custom Checkboxlist control | 25 Sep 2003 21:33 GMT | 2 |
I have a checkbox list control, "check1" , on my page. After I do the databind, here is what the view source looks like.
|
| Help ListBox | 25 Sep 2003 21:24 GMT | 3 |
Is there a way to add items on a listbox from a client and postback the new items on the server? Victor
|
| datagrid page event not firing | 25 Sep 2003 21:13 GMT | 1 |
I am having trouble with a datagrid as part of a composite web control. In CreateChildControls, I rebind the datagrid to a datatable in a session variable if the page is posted back. I had to do this to cause the
|
| How to access controls | 25 Sep 2003 19:45 GMT | 1 |
I am creating controls dynamically (programmatically) in a loop that is navigating through a XML DOM. Once I (the user) submit the form and reloads the page (or with AutoPostBack), how can I access the controls (i.e. DropDownBoxes) to
|
| url problem? | 25 Sep 2003 14:45 GMT | 2 |
I made a header control with built in menu. It works great. It is in the root dir. Then I made some files in a subdir to protect them. When I place the header control on them, it of course can't go to the
|
| I want my <asp: | 25 Sep 2003 08:17 GMT | 1 |
By putting custom controls in the GAC, I can do a <% Register TagPrefix="..." assembly="MyAssembly, version=1.0.0, culture=neutral, PublicKeyToken=1234567890" namespace="MyNameSpace %>. This is OK, I guess, but what if I have a 2 or 3 sites consisting of 1000
|
| help: how to make a windows control to a webcontrol | 25 Sep 2003 04:43 GMT | 1 |
If i build a windows form, will I be able to use it as a web control? how can i do this. I cant find a directory browser for web A menu for the web browser
|
| Events not firing on dynamically added UserControls | 25 Sep 2003 04:42 GMT | 1 |
I am trying to dynamically add a user control to a Custom Control that inherits a Panel. The control renders fine on the web form. The problem is that none of the user control's events are firing (button clicks, etc.) on the server. The page is posting back, but none of
|
| WebControl design mode behavior | 23 Sep 2003 17:01 GMT | 8 |
In design mode: When you drop two Labels, HyperLinks, Buttons, etc onto a form they are shown as side-by-side (just like they are when the actual page is rendered).
|