Tagged Questions
0
votes
1answer
181 views
Linkbutton inside ASP.NET custom composite control template losing its ViewState
I've made an ASP.NET custom composite control which has an ItemTemplate for its children.
It's based on the RssFeed (http://msdn.microsoft.com/en-us/library/aa479322.aspx) example. The template has a ...
0
votes
0answers
54 views
ASP.NET Redraw of composite control after property has been updated
I have defined a Composite control which contains a different number of child controls. One of these is a label that contains the number of pages for a table outside of the composite control. Its text ...
6
votes
2answers
265 views
Composite Web Client Guidance
Good day,
I was wondering if you could perhaps help me,
I was reading the guidance associated with the following:
Composite Web Guidance
I was reading through the section titled "Define the ...
1
vote
2answers
288 views
Design Time Error in Composite COntrol in ASP.NET
I have created a composite control. There is no build error in it.
In the composite control i am using a Entity Framework Object
The problem is that in the design window i get the error message as ...
0
votes
1answer
156 views
Strange behaviour on asp.net composite custom control - anyone have an answer?
The Scenario
I'm working on a large web-forms-heavy intranet site right now, and we're trying to replace the 500+ forms with a generic, database-driven form engine which will dynamically add various ...
0
votes
1answer
703 views
Which javascript scriptreference is linked to each ScriptResource.axd?
Google Page Speed is saying we should combine external JavaScript. Fair enough.
I know that the way to do this is to use a CompositeScript tag inside asp:ScriptManager.
<asp:ScriptManager ...
0
votes
3answers
703 views
Settings properties of a child in a composite control in an .aspx page
I've got a composite control (class) that exposes an asp:Label through a get-property. Is is possible to set the Text property of the Label through aspx-code?
I'd like to do something like this:
...
0
votes
2answers
3k views
ViewState[“sample”] Variable not retaining value on postback in a composite control
I have created a composite control with sample details as follows. Basically, the first time on page load the control sets a view state variable and the problem is that on post back (when the button ...
0
votes
1answer
40 views
Inheriate from a custom CompositeControl
Hi I am hoping for some help.
I have created a composite control that has some basically functions. I would like to be able to take that composite control and reuse the code.
How do I do this? I ...
0
votes
1answer
621 views
GridView: Control Designer
I have a question regarding the GridView and the Control Designer of it.
I've made a composite control inherited of the GridView. I would like to make some new created BoundField controls available ...
0
votes
2answers
43 views
divert asp.net child controls
I am trying to create an asp.net custom control that acts as a hosting container for any other controls, similar to the existing ‘Panel’ control. Basically, I need to build a web control that groups a ...
0
votes
2answers
473 views
ASP.NET Custom Server Control Build — Validator
I am writing a DateValidator control to function as a validator of all type for dates.
It will function as an Required validator, a Min/Max validator, and a Range Validator for date comparisons on ...
1
vote
4answers
5k views
ASP.net dynamically created control event handling
Essentially I have a placeholder added to the page dynamically on page load.
Then I have a composite control that is added to the placeholder and displayed during runtime for specific page events. ...
1
vote
2answers
553 views
Asp.Net 2 Custom Server Controls Properties
I am having a very hard time finding a standard pattern / best practice that deals with rendering child controls inside a composite based on a property value.
Here is a basic scenario. I have a ...