Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
8k views

Asp.net Usercontrol LoadControl Issue

I am having an issue when using LoadControl( type, Params ). Let me explain... I have a super simple user control (ascx) <%@ Control Language="C#" AutoEventWireup="True" Inherits="ErrorDisplay" ...
6
votes
4answers
1k views

LoadControl and Page_Load event not firing

Hey all! I'm loading a UserControl through a Web Method, and using the LoadControl functionality as such: // create page, stringWriter Page _page = new Page(); StringWriter _writer = new ...
3
votes
2answers
358 views

How to LoadControl a control that uses VaryByControl OutputCache, specifying values for properties

I've got a user control that should use caching, with VaryByControl. The .ascx file looks like this : <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="TestControl.ascx.cs" ...
3
votes
2answers
694 views

Dynamically loading user controls in C# Web Application rather than website

I am trying to create my own website management framework similar to DNN/SiteFinity (only a mucho cut down version). One of the big (but common) features is to be able to dynamically add user ...
2
votes
1answer
623 views

Panel and User Controls vs load User Controls dynamically

If I want to dynamically show or hide several User Controls. Would it be better to use Panels that load the User Controls and then show or hide the Panels (visible=true/false) or would it be better ...
2
votes
2answers
158 views

LoadControl from windows application

Is it possible to LoadControl in windows application? I have email generation as web, but I want to move it to windows service for monthly newsletter. Emails now are implemented as UserControls, in ...
2
votes
2answers
262 views

Dynamically Loading Controls and Persistence in ASP.NET

I am loading a series of controls in the Page_Load event. However, I have to recreate those controls each page load, which means storing their data elsewhere. This is cumbersome. protected void ...
2
votes
1answer
441 views

how to load usercontrols from the assembly using the filename?

we have a set of usercontrols complied to a dll. we could just load the controls using their classnames by like ASP.theusercontrol_ascx blah = new ASP.theusercontrol_ascx(); but if we have dynamic ...
1
vote
1answer
32 views

Reloading a custom control

I have a cs class which I use as a control on one of my page. It is like a table with some values. This control is loaded when the page loads. After user does some selection, I need to refresh this ...
1
vote
1answer
401 views

ASP .NET UpdatePanel in dynamically loaded control

Currently we have an UpdatePanel containing a Panel as follows: <asp:UpdatePanel ID="updatepanel" runat="server" UpdateMode="Conditional"> <ContentTemplate> ...
1
vote
2answers
375 views

ASP.NET performance: using LoadControl in for-each

I'm trying to make a decision about how to display my data. What I have now is a list of products displayed in a repeater. But for code-maintenance I've put my product items in a seperate usercontrol ...
1
vote
1answer
436 views

parameter injection into dynamically created UserControls without specialization

What I would like to know is if there is a technique to inject parameters into the rendering HttpContext such that it would be available to the UserControl when its page life-cycle events (Page_Init, ...
0
votes
1answer
19 views

injecting gridView required VerifyRenderingInServerForm . but Why?

Asp.net A.aspx with JQuery Im accesing an ASHX file which loads control ( ascx ) which inside of it it has GridView. - and the control content is being injected to the page... when I ...
0
votes
1answer
30 views

Website is building normally but not during publish

I have developed a usercontrol in ASP.NET and used LoadControl to dynamically add the control to a page. When I want to read the usercontrol data (properties) I cast page control to its type like ...
0
votes
0answers
83 views

Dynamically Loading UserControl with ICallbackEventHandler Implemented faces error

I am trying to load(LoadControl) a UserControl that uses ICallbackEventHandler to change some DropDownLists items dynamically. Problem is that the Ajax result that comes to client contains the ...
0
votes
2answers
40 views

how to reference class type in a LoadControl call?

In this example for loading a user control dynamically, how do I declare "TimeDisplay"? Can this be done in the code behind, or is it done in the ascx page? This is an example from a book, I guess ...
0
votes
1answer
60 views

Loadcontrol event Is working but how?

Page Code : public partial class Default2 : Page { protected void Page_Load(object sender, EventArgs e) { Uctest ctrl = (Uctest) this.LoadControl("Uctest.ascx"); ctrl.ID = ...
0
votes
1answer
80 views

Free SMPP (jabber) libraries for .NET?

I'm looking for a lightweight easy to use SMPP library for .NET. Only requirement is that it must support Legacy SSL. Any tips? THX in advance
0
votes
1answer
170 views

Loading user control dynamically from handler, and passing property values

I'm trying to load a user control using the following example: Load ascx via jQuery The example is using Page.LoadControl(String). I'd like to load a control that has custom properties, is there a ...
0
votes
1answer
186 views

what is the difference loading Web user control loading on page?

i try to load some user control on my Default.aspx page selecting dropdown control. i searched some data from net i 've learn 2 methods there is first one : ...
0
votes
2answers
152 views

Can I load an ITemplate from a database or string?

I'm looking to implement some templates in a web application and wanted to utilize ASP.NET's templated controls. However, I don't want to rely on physical .ascx files, or the VirtualPathProvider in ...
0
votes
1answer
273 views

Dynamically adding the same UserControl multiple times

I have a simple UserControl that I've created that simply allows a user to enter the date. For the time being, it has a single Textbox with ID="tbDate". I am trying to dynamically add this control ...
0
votes
1answer
1k views

Handle Button Click Event from User Control loaded dynamically

I have a blank user control (child) and during Page_Load i create some text boxes and a button. I also add an event to the button. I then load that user control dynamically from a placeholder in ...
0
votes
3answers
479 views

ASP.NET Button click not caught (button in user control which is dynamically loaded in Repeater)

I have written a user control that captures some user input and has a Save button to save it to the DB. I use a repeater to render a number of these controls on the page - imagine a list of multiple ...
0
votes
1answer
189 views

LoadControl - from string variable

If e.g. I keep control markup in DB instead of ascx file. How can I load control from string constant? (of course if I don't want to save copy to disk)
0
votes
3answers
225 views

Getting data from child controls loaded programmatically

I've created 2 controls to manipulate a data object: 1 for viewing and another for editing. On one page I load the "view" UserControl and pass data to it this way: ViewControl control = ...
0
votes
1answer
704 views

using LoadControl with object initializer to create properties

In the past I've used UserControls to create email templates which I can fill properties on and then use LoadControl and then RenderControl to get the html for which to use for the body text of my ...
0
votes
4answers
4k views

Create Instance Aspx Page of Ascx Control In a Back End Class without Loading FilePath

Question: Is it possible in back end code (not in the code behind but in an actual back end class) to load and render a page or control defined in a .aspx or .ascx without having to use Load(path) and ...
0
votes
1answer
196 views

Is it required to call ResolveUrl() before LoadControl()?

Is it required to call TemplateControl.ResolveUrl() before passing it to TemplateControl.LoadControl()? Which way is preferred? LoadControl(ResolveUrl("~/MyControl.ascx")); ...
0
votes
1answer
689 views

ASP.NET LoadControl Use of keyword 'base' is not valid in this context

I want a web service to load an .ascx control, load some values in it and then return the HTML content of this control. I have something like that: [WebMethod(EnableSession = true)] public void ...
0
votes
1answer
894 views

asp .net events in dynamically loaded controls ( Telerik )

I've a question about dynamically loaded controls and events in these controls ( button click in my case :) Here is what i got one RadPanelBar a Button and hidden input: ...
0
votes
1answer
664 views

Adding a list of UserControls with buttons to a PlaceHolder - no event?

I want to make use of "complex" usercontrols with more than one control element within. Its the same control I will reuse in the list and I have a PlaceHolder control for it already. I can add the ...