Tagged Questions
The user-controls tag has no wiki summary.
11
votes
4answers
2k views
What's the best way to implement user controls in ASP.NET MVC?
Like many others on this site I am considering a move to ASP.NET MVC for future projects. Currently my sites are running the traditional ASP.NET 2.0 Web Forms, and it works Ok for us, so my other ...
10
votes
3answers
4k views
Global Exception Handling for winforms control
When working on ASP.NET 1.1 projects I always used the Global.asax to catch all errors. I'm looking for a similar way to catch all exceptions in a WinForms user control which ends up being a hosted IE ...
6
votes
9answers
11k 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 view the contents ...
4
votes
5answers
1k 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 PageLoad event (I only ...
4
votes
2answers
613 views
Techniques For Distributing ASP.NET User Controls Across Projects
Distributing ASP.NET user controls across different projects can be really useful when you want to create a library of controls that can be used by different projects.
Unfortunately, to my knowledge, ...
4
votes
3answers
655 views
Visual Inheritance or a User Control?
I have several forms in a .net windows app that have a common set of textboxes and other user input controls,each form has the same look and feel, but each form needs to load and save to different ...
3
votes
3answers
502 views
Windows Forms application, how to communicate between custom controls?
I have three user controls. Here are the description of them:
1) First user control(ucCountry) contains combobox which displays country names from an xml file.
2) Second user control(ucChannelType) ...
3
votes
3answers
905 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?
3
votes
1answer
997 views
ASP.NET User Controls - Problem adding multiple instances programmatically?
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 PlaceHolder. This seems ...
2
votes
2answers
854 views
ASP.Net: User control with content area, it's clearly possible but I need some details
I have seen two suggestions for my original question about whether it is possible to define a content area inside a user control and there are some helpful suggestions i.e.
...
2
votes
3answers
309 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 thing in VS2005, such ...
2
votes
1answer
810 views
Properly referencing controls in ASP.NET user controls in JavaScript
I have an ASP.NET user control that contains a text box control and a button control. This user control will be added to my web-page many times. I need to have a piece of JavaScript that will run ...
2
votes
1answer
215 views
How can I make a user control's form portable to other pages
I have a user control that will be used in several pages (as is the custom with user controls) that contains a form.
I was thinking on how to guarantee its functionality.
First I wanted to have a ...
1
vote
4answers
40 views
How to add user control on run time in ASP.NET?
How to add a user control on page load dynamically (in ASP .NET using C#)?
I have a div with ID="contentData"
and few controls
one.ascx
two.ascx
three.ascs
Now i have created a page default.aspx, ...
1
vote
1answer
82 views
Modify Config file when User Control is added to form
I have built a User Control library that has a reference to a WCF service. I would like to add the WCF Configuration information to the app.config file of the host project, which will be a Windows ...
1
vote
2answers
371 views
Passing mouse events to overlapped controls
My WPF user control consists of a few subcomponents, placed in such way that they overlap each other (sometimes completely), however they are on the same level on the visual tree (each subcomponent's ...
1
vote
1answer
269 views
Cannot Place User Control on Form
I've created a C# WinForms application using VS2010. I'm new to creating user controls so I created a new user control (as part of the same project).
When I rebuild the project, the new control ...
1
vote
3answers
1k views
Including Javascript and css in Master pages and User Controls in asp.net
I am trying to include the js and css in my code behind in my master pages and user controls in Page_Load event.
But apparently, js breaks since Page_Load of user controls loads BEFORE Page_Load of ...
1
vote
3answers
749 views
Winform & user control - C#
I have a Form and a UserControl. The UserControl has a menu, and the form has a tabstrip (General, Food, Vitamins etc).
In the UserControl, I have the following code: (Form name is frmForm, the tab ...
1
vote
1answer
381 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 control is rendered ...
1
vote
7answers
933 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 this everytime ...
1
vote
2answers
512 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.
1
vote
2answers
375 views
Is it possible to give an ASP.NET MVC User Control a different Model than the Page
I have an order page that is being rendered from a Model object (Order) with a few properties. One of the properties of the Order object is
public List<OrderItem> Items { get; set; };
and ...
1
vote
6answers
4k views
WPF - Animations in a user control, learning, trying to understand, but feeling n00bish
OK I'm redoing this since I messed it up. :) here's the xaml.
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
1answer
78 views
Does anyone know where I can find a memory editing user control for .net?
I am developing a small application which lists the contents from files of a given format. The file format acts as a template for describing binary data (think binary xml). This allows the clients ...
0
votes
3answers
46 views
Webforms : Simplest way to allow a user to add/remove textboxes?
I don't want to use a gridview because the rest of the form isn't.
I simply need to be able to create a control to dynamically add/remove textboxes and get the value back either as a list of objects ...
0
votes
2answers
46 views
Why don't my user controls render?
I've created a set of user controls in vb.net and in their original project they work fine.
I've since created a user control library dll and I wish to use it in a new project.
I add the reference ...
0
votes
2answers
79 views
ASP.NET Usercontrol + Javascript
I have an usercontrol with javascript inside. I'm using it into a page with ASP.NET Ajax enabled. It works fine in most scenarios, but when the instance of the usercontrol is not visible in the first ...
0
votes
1answer
92 views
WPF UserControl Inheritance & Style
I have the following Problem: I create a custom control which inherits from an already existing one, i.e.
public class CustomButton : Button
{
public Boolean AdditionalProperty { get; set; }
}
...
0
votes
3answers
408 views
WPF: What are the advantages/disadvantages of using WPF UserControl?
I just want to raise this question about WPF's User Control. I just started using this 'control' in my WPF applications, instead of 'adding' all my controls in one WPF window.
Anyways, would I get ...
0
votes
1answer
463 views
ASP.NET Menu Image with Dropdown Text Subitems
I have a menu user control with image buttons like this one:
<asp:TableCell ID="tcDownload" runat="server" CssClass="MyMenuTableCellDownload" VerticalAlign="Top" >
<asp:ImageButton ...
0
votes
1answer
370 views
image control with radio buttons
I need a control which can hold an image and two radio buttons, like the one we have when we upload a pictures on fb / orkut.
1. Image
2. Delete radio button.
3. Cover radio button.[Set this image as ...
0
votes
2answers
141 views
web.config file references cannot be found in intellisense
I have referenced multiple user controls within the web.config file, because I was receiving an error in the individual pages and they are used in multiple pages, the code I wrote is as follows:
...
0
votes
1answer
119 views
Defining path to executable for a custom control
I have created a custom control using VB.NET in Visual Studio 2008 that gives extensive mapping and tracking functionality to a search and rescue app. The problem I am having is that in a number of ...
0
votes
1answer
436 views
User control event or method override where custom properties are valid?
I have an ASP.NET user control that is used in another use control. The parent user control uses data-binding to bind to a custom property of the child user control.
What method can I override or ...
0
votes
2answers
765 views
Custom Silverlight button with <Path> content and visual states
I would like to create a button control that has a Path element as its content--an IconButton if you will.
This button should fulfill two conditions:
1. The Path element's stroke and fill colors ...
0
votes
2answers
278 views
Cannot see new asp.net user controls
I am feeling like an idiot right now, but I cannot for the life of me figure out why I cannot seem to call user controls from within my asp.net webpage. I'm still learning asp.net but I can't find ...
0
votes
2answers
424 views
Access to variables in an asp.net user control vs an include file
I've asked this question before but couldn't get the answer I was looking for so I'm going to try it again.
I'm translating pages from old asp to asp.net and I don't want to do this any other way so ...
0
votes
1answer
61 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 my intention is from ...
0
votes
3answers
1k 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="MyDLL" ...
0
votes
1answer
279 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. Thank you.
0
votes
2answers
1k 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 need the usercontrol ...
0
votes
3answers
277 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 MOSS extensively by ...
0
votes
1answer
2k 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, and I know from blogs ...
0
votes
2answers
283 views
ASP.NET MVC Beta 1 - Will My Existing User Controls Work In My Views As-Is?
I understand that you can now create MVC-specific user controls, but will my existing standard ASCX user controls work in an MVC view?
I understand that MVC pages have a completely different ...
0
votes
1answer
4k views
WPF Custom Control with Item/Data Templates
I know how to create a custom user control in WPF but how can I make it so that someone can provide an ItemTemplate?
I have a user control that is a mixture of several other WPF controls, one of them ...