| Thread | Last Post | Replies |
|
| Getting a subcontrol to work in a repeater | 18 Feb 2004 06:04 GMT | 3 |
I have a component that contains the following code <asp:repeater id="MyRepeater" Runat="server"><ItemTemplate><asp:HyperLink Text='<%# DataBinder.Eval(Container.DataItem, "Name")%>' NavigateUrl='<%# DataBinder.Eval(Container.DataItem, "Path")%>' runat="server"/><MyTag:MyControl ...
|
| Dynamically Building Property Values for Designer | 16 Feb 2004 21:15 GMT | 8 |
I would like to source a property for my custom web control from a database. I see examples out there that are sourced from an enum, but that is hardcoded and this I needs to load dynamically. Is it as simples as having a property that returns and ArrayList loaded with those ...
|
| css stylesheets | 16 Feb 2004 14:11 GMT | 2 |
I have following problem : I develop asp.Net Application using web controls. In each control I have a link to css stylesheet. If I use my controls in pages located in two different directories (eg. \adminpages\xxx.aspx and \adminpages\sysoperator\yyy.aspx) my controls
|
| Composite WebControl -- Child Control Property Persistance at Design-time | 16 Feb 2004 11:11 GMT | 9 |
I seen, this asked a number of times at this group but still have not seen any complete/rectified/fixed code. I have created a Composite WebControl, Added a button to it and exposed this child button as a property. But the properties are not
|
| Design time support for classes derived from DataGridColumn | 15 Feb 2004 17:12 GMT | 3 |
How to get design time support for classes derived from DataGridColumn ? I have created new DataGridColumn type, it uses image from database as source and renders actual image, not just some link to image somewhere. Now my column is working pretty good but I can't get design time ...
|
| Hosted WINFormControl only works via LocalHost | 14 Feb 2004 20:13 GMT | 1 |
I have a winformcontrol which is loaded using the object tag in a html page which only appears when I load the page using localhost, if I used my machine name or www.mysite.net which is also linked to 127.0.0.1 in my hosts file the page does not appear, The control has a strong name ...
|
| ViewSate is not saved | 14 Feb 2004 01:31 GMT | 1 |
I have written a custom control. Everything works fine until I place my control inside a repeater. When I do that the viewstate of my control is lost on postback(actually it is never saved). LoadViewState og SaveViewState is never called.
|
| How to use embedded image in ASP.NET Server Control | 13 Feb 2004 18:29 GMT | 2 |
I have a server control, written in ASP.NET, where I added two images as "Embedded Resource" to it. Now, I need to find a way to read the resource and produce an output stream to have the image be displayed on the web page as a regular
|
| Can't Resize Custom Control | 13 Feb 2004 16:01 GMT | 12 |
I have a web custom control that is a tree view. Once I place this control on my aspx page, I am not able to resize it. The ancors are fixed. It uses a designer that I got help with on this newsgroup, but I don't see why this would prevent me from resizing the control. I
|
| Custom Server Control can't hold modified status | 13 Feb 2004 15:49 GMT | 1 |
My custom control changes form, depending on the clicks. Ik save the status, and I can see that this occurs. So when I Show at the beginning 10 fields, which includes a field which is a foreign key to another record in another table. Pressing on the linkbutton
|
| Can't get TagPrefix to work for custom Web control | 13 Feb 2004 14:21 GMT | 2 |
I've created a new custom Web control. I have tried to customize the assembly attribute TagPrefix . However, each time I drag my custom control onto a form, it's TagPrefix is still "cc1". What am I missing here My control is nested within two namespaces: for example, ...
|
| Interactive use of my webcontrol | 13 Feb 2004 07:00 GMT | 2 |
I've developed (trying) to custom server web controls: 1) A list which shows in a table several rows from a database table. The firts column has a button, which is meant to be clicked by the user to get to edit the record.
|
| Events and Delegates | 13 Feb 2004 01:44 GMT | 3 |
How in a asp.net web form can you have two different objects events call the same sub with different signatures. Example: I have 1 ImageButton control and 1 LinkButton
|
| Create Graphics in Custom Control | 12 Feb 2004 20:45 GMT | 1 |
Is is possible to create a graphic using GDI+ and send it back from a control doing something like: [code] Protected Overrides Sub Render(ByVal output As System.Web.UI.HtmlTextWriter)
|
| User Control needs to refer to Page | 12 Feb 2004 15:29 GMT | 5 |
I have a user control which can appear on many pages. The control needs to know which page it is on so it can render itself correctly. What is the best way for the control to find out what page is being
|