Tagged Questions

2
votes
1answer
186 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 PlaceHolder. This …
1
vote
2answers
80 views

What is the best way to split up MVC controller functionality?

Hi, When making Controllers, what are the best ways to split it up? If I have an admin section that has a bunch of .ascx web user controls underneath it and a few .aspx pages. Should I have one …
0
votes
2answers
390 views

How can I import a .ascx file into a .aspx page using tag registering?

Hi, I have this set up... <%@ Register TagPrefix="UserControl" TagName="UserLogin" Src="~/admin/Authentication/Login.ascx" %> <%@ Register …
0
votes
4answers
983 views

javascript and asp.net web user controls

I have a web user control that generates the following html on the client. I want to reference a specific RadioButton control using JavaScript. I am not sure how to do this as the RadioButton ID …
0
votes
2answers
219 views

How to create Java Custom Web Controls?

This question was originary in my head as "Can I use AWT controls in a Servlet?", which will show all my ignorance on the subject. I am new to JAVA technologies but after a bit of reading, I seem to …
0
votes
2answers
115 views

Can you update a web user control without updating the entire site?

I have a website which uses a web user control... well, basically all over the place. It's even included in other web user controls. So I thought I could just upload the new source and it would …
0
votes
3answers
551 views

How do I register event handlers for a web user control in my code behind?

I'm having a problem setting up an event on a form. Here's the setup: I was given a page with two controls, two different versions of a form for the end-user to fill out- standard and advanced. The …
0
votes
1answer
159 views

Why is an InsertParameter not getting its value, but only on the server?

I have a page which consists of a formview containing several Web User Controls (WUCs.) The WUCs get a value from the parent page using a public property, which is stuffed into a HiddenField. I …
1
vote
2answers
941 views

Difference between User Control and Custom Control?

What are the differences between User Control and Custom Control in ASP.NET
0
votes
2answers
172 views

Can I nest Templates in a Web User Control?

I want to do something like this: <MyTemplate> <span><%# Container.Title %></span> <MySubTemplate> <span><%# Container.Username …
0
votes
1answer
258 views

Can you get SkinID Autocompletion in ASCX Controls

Working in VS 2008 When working on on ASPX file in Source mode, if i've specified a StyleSheetTheme in the page directive of the file, then Visual Studio will provide me with AutoCompletion lists of …
1
vote
2answers
2k views

JQuery DatePicker bundled control can’t be included in other controls

I've been tasked with implementing a Date/Time selector for several areas of our web project, and instructed to use a control that another developer created as part of it. The control I'm working on …
2
votes
3answers
215 views

do i need to unregister events in asp.net

I have a web user control that contains several other (web user) controls and subscribes to events the children raise. I saw someone somewhere in a similar situation providing Dispose() on the …
14
votes
10answers
1k views

Passing int array as parameter in web user control

I have an int array as a property of a Web User Control. I'd like to set that property inline if possible using the following syntax: <uc1:mycontrol runat="server" myintarray="1,2,3" /> This …
6
votes
7answers
1k views

When would you use a Web User Control over a Web Custom Control?

Can someone explain when to use each of these? They almost seem interchangeable in many cases. The Custom Control gets added to the toolbar while the User Control (ascx) can not. The Custom …

1 2 next
15 30 50 per page