Tagged Questions
The dynamic-usercontrols tag has no wiki summary.
2
votes
3answers
92 views
Storing number of dynamically inserted controls for postback
I need to create the following functionality, and looking for the best way to store info on multiple postbacks:
Say I have a TextBox, that is related to a question, i.e. "Places I've visited". Once ...
2
votes
2answers
366 views
How can I load .ascx user control from console application or windows service?
We use ascx user controls as templates for documents (e.g. invoices).
Now I need to load,render to HTML, then transform to PDF these controls from windows service.
So, what's the correct ...
1
vote
0answers
245 views
how to use OutputCache in a userControl in asp.net
I have a aspx page that have this piece of code to load a usercontrol loaded from database
Control userControl = new Control();
userControl = LoadControl(userControlName);
...
1
vote
2answers
1k views
Send parameters into dynamically loaded user controls
I load the content of some User Controls into my page with the use of jQuery. So I have this function that extracts the content from my User Control, and it works like a charm.
public string ...
1
vote
2answers
1k views
dynamically load user controls using jquery ajax
I've read several articles on this issue, and technically speaking, all they end up doing is taking html code from a user control and injecting it into the containing page. I want a true user control ...
1
vote
2answers
913 views
How can I move controls into a dynamically added usercontrol into page?
I have a usercontrol that move dynamically on the CreateChildControls method some web controls.
When using this control into a page like :
<myControls:MyUserControl runat="server" ...
0
votes
2answers
118 views
Correct architecture to extend WinForm UserControl base classes?
I have large number of UserControls that are very similar. They share a lot of common behavior. I been using a base class that has the common stuff and then specializing the class as needed.
...
0
votes
1answer
594 views
Dynamically Load UserCOntrol using MVVM Light Toolkit
I searched this site and i found 2 Links
how to load wpf usercontrol in MVVM pattern
MVVM-Light: Load UserControl into Window
but still i cant find the answer to my problem and this link
MVVM-Light ...
0
votes
0answers
85 views
Retrive Project Controls virtual path
I work on C#. I have many controls in my asp.net project. I want to store my controls path in database. Suppose one of my control name is MyUserControl.ascx. and its path is ...
0
votes
0answers
118 views
Dynamically loaded user control loaded after On_Load - retrieve selected value of a dropdown
I have a .ASPX page that dynamically loads user controls when the user clicks on rows in a data grid.
The view state does not get remembered and I'm wondering if there is a work around to force the ...
0
votes
2answers
499 views
FindControl won't find my dynamically added UserControl
I'm working on a project where the page load certain controls depending on the index available. The loading occurs in the page load where the method PopulateSearchField is called.
Within this method, ...
0
votes
1answer
185 views
How to get a user control's type given its path
Is there a way to translate a path to a user control, ~/usercontrols/MyUserControl.ascx, to a type, as in typeof(MyUserControl)?
0
votes
1answer
130 views
How to load user control given its type
Is there a way to instantiate and use a usercontrol (.ascx) if given you have its Type (ie. typeof(MyUserControl))?
With regular asp.net controls like a textbox or a dropdownlist you can just make a ...
0
votes
0answers
153 views
how to use OutputCache in a userControl in asp.net
I have a aspx page that have this piece of code to load a usercontrol loaded from database
Control userControl = new Control();
userControl = LoadControl(userControlName);
...
0
votes
1answer
529 views
load multiple content placeholders with user controls from server side using C#
how to load multiple content placeholders with user controls from server side using C#..
currently from serverside(in page_load) i am loading one usercontrol like this:
ContentPlaceHolder cph = ...
0
votes
1answer
183 views
How can I dynamically access user control attributes?
Im trying to create a "user control menu" where links to a page's usercontrols are placed at the top of the page. This will allow me to put several usercontrols on a page and allow the user to jump ...
0
votes
4answers
77 views
Can Asp.Net UserControls know if they're being added 'late' to the control hierarchy?
I have a user control that uses the standard if(!IsPostBack){//initialize myself} paradigm to avoid re-doing initialization during postbacks (so, trading fewer DB hits for increased ViewState usage). ...