0
votes
1answer
8 views
ASP.NET: User control with dependent attributes
I'm writing a user control with two attributes, A and B. I want the programmer using this control to be warned when defining a value for attribute A but not for B.
Can I accomplish this somehow?
0
votes
2answers
53 views
Programatically add UserControl with events
Hi everybody
I need to add multiple user controls to a panel for further editing of the contained data. My user control contains some panels, dropdown lists and input elements, which are populated in …
1
vote
4answers
354 views
In Web.config Is it possible to register all user controls in specified directory
Currently I'm registering every user control separately in Web.config
<pages validateRequest="false">
<controls>
<add tagPrefix="cc1" src="~/Controls/MyUserControl1.ascx" …
0
votes
3answers
857 views
Eventhandler for UserControl with button onClick event
Hello,
I've created a user control that contains a button and a few other controls.
When declaring my user control in the html markup I'd like to do some sort of :
<asp:CustomControl …
2
votes
3answers
241 views
How do I add an ASP.NET control inside an ASCX to an external RequiredFieldValidator programmatically?
I have a drop-down list inside a user control (ASCX) that I want to validate from the page on which I've placed the ASCX, but when I set the ControlToValidate to the drop-down list the page complains …
1
vote
3answers
427 views
Referencing DataItem of parent Repeater control inside a User Control
I need to place a user control into the template of a repeater control and reference data items from the repeater's datasource.
I tried (ignore the second cast which is specific to the CMS platform …
0
votes
1answer
22 views
In an ASP control how can I get the text in a <Contentemplate> tag in the control code?
Hi,
In my page ASP.net page I'm using a custom control like this:
<MyNamespace:MyControl runat="server" ID="myControl">
<contenttemplate>
This is the text I want to use
…
0
votes
3answers
33 views
how to get instance of .net control which is in child page from user control in master page
i have user control called shopping cart.
which i have used in master page.
i want to get the textbox value from the child page in to user control.
is it possible to access control from child page in …
0
votes
1answer
12 views
add one xaml based usercontrol to another on mouse event
I have three xaml files + their code behind files in my Silverlight (C#) web project.
One is the MainPage.xaml, which is what gets rendered in the browser.
The other two (lets call them Dot and Box) …
1
vote
1answer
44 views
How do you draw a string with ANSI codes?
I want to write a custom control, similar to RichTextBox which receives an ANSI code formatted string (\e[0;32mHello \e[0;37mWorld) where the codes represent the colors of the text (foreground, …
0
votes
3answers
23 views
Seeing new properties on a custom UserControl in Visual Studio
I have two C# .NET projects in my solution. One project is a DLL that contains a WinForms custom UserControl. The other project is a WinForms EXE that references and uses that UserControl on a Form.
…
0
votes
1answer
38 views
ASP.NET User Control declaration in designer.cs file
Hi,
On my .aspx page, I have the following declaration to user my user control:
<%@ Register TagPrefix="uc" TagName="ProductCategoryMenu" Src="~/Resources/Common/Controls/productCategoryMenu.ascx" …
2
votes
3answers
83 views
User controls in ASP.NET MVC
I am loving MVC but can't see to understand how your meant to implement User Controls. If I have a Multiple views each with shopping basket details how can I encapulate the shopping basket view and …
0
votes
3answers
59 views
Dashboard with re-arrangeable dashboard elements in Silverlight?
I need to create a dashboard with re-arrangeable/re-positionable dashboard elements (similar to iGoogle) using Silverlight. The dashboard elements are typically tables of data. The user should be able …
0
votes
1answer
15 views
How to stop postback when calling usercontrol
I have a ModalPopupExtender control and a panel which contains a iframe. The ModalPopupExtender's TargetControlID property is set to a html button control named btnFind.
When I click to find button, …
