0
votes
1answer
109 views
ASP.Net OutputCache: User Controls That Are Cached
Is there a way to obtain a list of User Controls (an/or instances of user contols) that have been cached? The Cache object's collection doesn't seem to include OutputCached items. …
2
votes
3answers
76 views
How do you render a User control from a ashx or webservice?
Question is it possible to have a .ashx or webservice return a user control rendered? if so how would i do this?
0
votes
1answer
38 views
Accessing a UserControls methods from its object.
I have created a UserControl called AutorControl with a method to clear its textbox:
public void LimpiarAutorTextbox()
{
textBox1.Text = "";
}
Then m …
2
votes
1answer
179 views
ASP.NET User Controls - Problem adding multiple instances programmatically?
Hi,
I have created a user control which basically consists of 3 text boxes. I want to allow the user to click a hyperlink which will add a new instance of the user control onto a …
0
votes
0answers
188 views
DataGrid inside User Control not firing events from ButtonColumn
I have an ASP.NET DataGrid inside of a user control (.ascx file). The OnItemCommand attribute is set to a valid event handler (in the code-behind for the control), and the the butt …
0
votes
4answers
366 views
ASP.NET User Control <%@ Register .. > directive confusion
After reading the answer here, I understand that, if I register a user control (I guess I'm really trying to use it as a custom server control) like this:
<%@ Register Assembly …
1
vote
3answers
132 views
How do I build a user control into a self-contained assembly in VS2008?
More specifically, what do I need to know about doing this in Visual Studio 2008 that's different from VS2005? I have found a decent number of references for doing this kind of thi …
3
votes
5answers
495 views
Catching events from dynamically added ASP.NET User Controls
I have an ASP.NET web form which I am adding a variable number User Controls to. I have two problems:
The User Controls are added to a PlaceHolder on the form in the first PageL …
3
votes
8answers
5k views
ASP.Net: User controls added to placeholder dynamically cannot retrieve values.
I am adding some user controls dynamically to a PlaceHolder server control. My user control consists of some labels and some textbox controls.
When I submit the form and try to …
0
votes
1answer
816 views
Loading ASP.NET User Controls By Type And Passing Parameters
In ASP.NET 2.0 it is my understanding that although the API existed for loading a user control by type, it didn't actually work.
Or at least I never managed to get it to work, an …
0
votes
8answers
433 views
Multiple UpdatePanels and state
I have a user control that has multiple update panels
On Page Load, I load a child user control dynamically onto the PlaceHolder (I do th …
1
vote
1answer
138 views
Which User Control event comes between data binding (other controls) and Render?
I'm currently building a user control that displays a message when a Repeater is empty.
The idea is simple, provide the user control with the ID of the Repeater. When the user con …
0
votes
2answers
548 views
User control - calling a vb linkbutton’s(within a user control) click event from javascript
how can i call a VB function - deleteevent() in usercontrol.ascx.vb from a javascript function in clickhandler(e) in usercontrol.ascx. The call should cause a postback because i ne …
0
votes
3answers
165 views
How do I build Web User Controls that are configurable ?
So here is a project outline, I need to make a web application with its core components encapsulated in Web User Controls. The reason for this is that the company will be using MOS …
1
vote
2answers
219 views
What is the best VB.NET control (standard/custom) for displaying list of files?
I'm developing a Desktop Search Engine in VB.NET and I'm looking for a powerful, flexible and feature-rich control for displaying the search results i.e. list of files.
