| Thread | Last Post | Replies |
|
| Output strem | 22 Mar 2004 19:03 GMT | 1 |
I want to ask if there is any way to access html code of the page after rendering all asp.net controls? For example when I look at the source code of the .aspx page in the browser (on the client side) I see something like :
|
| DropDownList where's the BorderColor ? | 22 Mar 2004 13:46 GMT | 1 |
I did post a thread before this one, but it seems to have been removed, which I find a little bit anoying as it seems that certain people in Microsoft are not happy with complaints about their software Once again I'll emphasis the point that Shen made in an earlier thread. The ...
|
| Composite vrs Rendered (tradeoffs) | 22 Mar 2004 07:46 GMT | 1 |
Are there any rules of thumb for deciding to go with a rendered vrs composite control? Are there times where you would definantly want to choose one over the other. What are the tradeoffs (Performance, additional overhead, etc), or is it mostly a matter of style or employer policy.
|
| Refresh design time HTML on style change | 20 Mar 2004 04:56 GMT | 12 |
Hi, in my control I have some properties that are style objects (ex of type TableItemStyle) One example is below: private TableItemStyle _itemStyle;
|
| a trigger to update frames? | 20 Mar 2004 03:29 GMT | 1 |
Can this be done? The site has a few frames, some on top, some on the side, and the middle one. I want to be able to tell the one side frame containing the menu, to change the menu contents when a user logs in, and also the change the top
|
| ViewState Question | 20 Mar 2004 02:44 GMT | 5 |
Okay, I give up... how do you get a customized descendant of Style to persist through ViewState??? I tried following the online docs, but I'm obviously doing something wrong. Here're the overrides I created in my WebControl class: protected override object SaveViewState()
|
| Creating Object from Inner Property | 20 Mar 2004 02:43 GMT | 5 |
I have a custom web control that exposes a couple of inner properties related to data. The layout of the those properties is: <cc1:Calendar id="Calendar1" runat="server"> <DaysSelected DataSource="a-data-source" DataMember="a-data-member" DataField="a-data-field" />
|
| Depending properies doesn't change aspx source | 19 Mar 2004 12:00 GMT | 2 |
I have some trouble (again) with a WebControl, I've a some properties that depends on other properties. The problem is when I change a property which also changes another, the aspx file doesn't update the last one. What's the trick to update the aspx file? Here is sample component ...
|
| Add Control without touching ASPX? | 19 Mar 2004 02:46 GMT | 3 |
I have a server control that is declared in the top of the .aspx page. I want to use the control in many, many pages, but do not want to hand-modify every .aspx page template. How can I specify that a control be added/used in the codebehind
|
| Referencing a custom struct in .Net asp tags. Getting error. | 19 Mar 2004 00:03 GMT | 2 |
I created a custom struct called Automobile. This struct has various properties called "Ford", "Chevy", "Dodge", "Pontiac", .... This struct is pretty much the exact same format as the .Net System.Drawing.Color struct where "Ford", "Chevy", ... would equate to the Colors "Red",
|
| table joins - 3 tables | 18 Mar 2004 15:58 GMT | 1 |
Ok, I got three tables, company, comments and old_company. In company are all the current companies, in old_company are companies who have been suspended, and in comment, clients can make comments about the companies, regardless if they are current or suspended companies.
|
| Multiple controls with the same ID '_ctl11' | 18 Mar 2004 15:58 GMT | 2 |
We designed a dynamic control loading framework that loads ASCX files into placeholders in a single ASPX page that inherits from a base page class. The framework consists of a controller device that is dragged out onto the ASPX page and "devices" that are dragged out onto the
|
| CreateChildControls(...) or Render(...)? | 18 Mar 2004 13:12 GMT | 2 |
Should I create controls for a composite WebControl in the CreateChildControl or the Render method? It seems like CreateChildControl is not called at design time when the control is on a page being designed. Here's my situation. I'm making a composite WebControl that has a label ...
|
| Editing collection property from Property Window... | 18 Mar 2004 12:59 GMT | 1 |
If I've got a property on my web control that is a collection (of strings), how can I have it allow the user to edit those strings through the property window at design time? The property on my webcontrol is defined as:
|
| Pending Events? | 18 Mar 2004 02:03 GMT | 6 |
I've noticed something in a calendar control I'm writing relating to event processing. My control has some links built into it to allow you to move forward and backward one or more months at a time. When one of those links is clicked, an event is generated that the control library
|