| Thread | Last Post | Replies |
|
| Non-visible control | 23 Jun 2004 00:52 GMT | 2 |
I want to create a custom webcontrol similar to the SqlConnection control, in that it is not actually drawn on the form. When you drop the control onto a form it automatically gets put in the little non-visible tray at the bottom of the webform.
|
| CssClass property not recognized by Inherited WebControl? | 22 Jun 2004 19:23 GMT | 3 |
I'm trying to create a custom Linkbutton control by inheriting from WebControls [ToolboxData("<{0}:MyLinkButtonrunat=server></{0}:MyLinkButton>")] [ParseChildren(false)] public class MyLinkButton: WebControl , IPostBackEventHandler
|
| ControlCollection problem | 22 Jun 2004 13:51 GMT | 2 |
I'm trying to create a simple control that would take its inner controls and add separators like " | " between them. The inner controls will be declared inside ASPX like this: <my:Control ....>
|
| Replacing a control dymamically (to use a webform as a template) | 22 Jun 2004 08:08 GMT | 3 |
I have to replace a bunch of controls dynamically (TextBoxes, DropDowns, etc). Any way to do this? The 'template' pages are made on asp.net with tables (not runat=server) and asp:textboxes, etc.
|
| Composite Control Attributes | 22 Jun 2004 03:53 GMT | 5 |
I am building a composite control in C# that contains a textbox and a requiredfieldvalidator that I want to be able to add client side attributes to. If I use mycontrol.Attributes.Add(.....) the attributes are added to the
|
| Building User Contols in ASP.NET | 20 Jun 2004 19:39 GMT | 3 |
I am new to ASP.NET. So I am trying to learn from the book I just bought. There is a simple example of how to build a user control which I religiously typed into the Notepad, but the results are not what was expected.
|
| Validation Summary Contol | 19 Jun 2004 15:17 GMT | 1 |
I am trying to add a validate summary control to my composite control. I add it to the controls collection and all the other validation control stop working. My form is on the parent page and the composite control is embedded in it. The submit button is just an ordinary button which ...
|
| Complex control lifecycle issue | 18 Jun 2004 09:01 GMT | 4 |
I've built a control whose purpose is to render a shopping cart based on templates and an Order object which gets passed to it. I'm keeping the order object in the Session object and therefore have no need to use ViewState for this control. Instead I create the ChildControls
|
| saving class to viewstate | 18 Jun 2004 05:51 GMT | 3 |
I created a web control that accesses a class that performs certain functions. I wanted it saved in viewstate so i do not have to reload the data that is in it everytime i re render the control. But when i save the class to viewstate i get an error that it not serialized. i went ...
|
| Validators in a user control | 18 Jun 2004 05:48 GMT | 1 |
ive made a usercontrol with some textboxes. ive added some required field validators to the textoxes. i made a page with a button and my user control. when i click the button, how can i make the validators check the textboxes ?
|
| dinamically linkbuttons handler | 18 Jun 2004 01:55 GMT | 3 |
I've created a method for creating linkbuttons dinamically.It works fine if the method is in the webform but if i try to put the method in a different class it doesn't work: --- webform1 ----- This works:
|
| Get Container Parent at Design Time | 18 Jun 2004 01:50 GMT | 4 |
I have many panels into a container(it´s also a panel). I want to get the container´s id from the child panels at design time. When I create these child panels from code I can get the containerID easily:
|
| RotateFlipType and PropertyGrid - Bug ??? | 17 Jun 2004 15:17 GMT | 1 |
I've writte a custom control which has a property of type RotateFlipType ( an enum from System.Drawing). Anyway, in design time when I look at the property grid for an instance of the control the dropdown list showing possible values has duplicate entries and some missing ones !!! ...
|
| dynamic loaing of the controls on the dynamically created page | 17 Jun 2004 03:51 GMT | 3 |
(Type your message here) -------------------------------- From: abhishek dave hi,
|
| UserControl and Session | 17 Jun 2004 03:50 GMT | 1 |
I encounter a problem but don't know how to solve it. Here is my situtation: I have a web page, 2 user controls: A and B. A and B are dynamically loaded into the main page. In B there are 4 buttons, TextBox, object and
|