Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
9answers
3k 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 ...
9
votes
6answers
2k views

When to enable/disable Viewstate

I generaly disable viewstate for my ASP.net controls unless I explicitly know I am going to require view state for them. I have found that this can significantly reduce the page size of the HTML ...
7
votes
8answers
3k 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 ...
6
votes
9answers
3k views

Dynamically added controls in Asp.Net

I'm trying to wrap my head around asp.net. I have a background as a long time php developer, but I'm now facing the task of learning asp.net and I'm having some trouble with it. It might very well be ...
4
votes
1answer
185 views

Updating a web user control based on another web user control

I have a web user control which has a Treeview control inside it. I have created another user control which contains a Gridview along with a couple of other controls. The Gridview, should update ...
3
votes
1answer
226 views

Integrating/switching to MVC3 from WebForms with large existing library of custom controls

Here's the situation. We're adding a new application to our suite of webapps based on WebForms and so I felt this would be the perfect time to introduce MVC. I did all the research about ...
3
votes
2answers
1k views

ASP.NET Web User Control with Javascript used multiple times on a page - How to make javascript functions point at the correct controls

I think I summed up the question in the title. Here is some further elaboration... I have a web user control that is used in multiple places, sometimes more than once on a given page. The web user ...
3
votes
1answer
996 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 ...
3
votes
2answers
3k views

Difference between User Control and Custom Control?

What are the differences between User Control and Custom Control in ASP.NET
2
votes
1answer
66 views

Can I store a Web UserControl ascx and code behind in database and load it from there?

Is there any way I can store the code of the UserControl in a database table, compile it dynamically or Load it from there ? Means I get a string from database that contains the complete code of ...
2
votes
3answers
166 views

How to find the url of parent page of a User control

I have a user control where if a certain action is performed I want to redirect to the page the user was on with some additional query string parameters. So, if UserControl.ascx was on Home.aspx, I ...
2
votes
2answers
634 views

How to create redistributable user control in DLL form with embedded images, javascripts, style sheets?

I've developed a most reusable ASP.Net WebUserControl for our company's web applications. I'm now going to make it as a redistributable DLL according to this msdn topic. Since the WebUserControl comes ...
2
votes
1answer
566 views

Accessing inner value of ASP.NET Web User Control

Surprised that i havent been able to find this myself, but anyway. Let's say i use my web user control like this: <myprefix:mytag userid="4" runat="server">Some fancy ...
2
votes
3answers
415 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 ...
1
vote
0answers
35 views

Registering .ascx ASP.NET User control in ASP.NET Page or Master Page will load it or not?

If I register user control in ASP.NET page, the control will be loaded to the page or not? <%@ Register Src=".." TagName="tag" TagPrefix="pre" %> even if I not call it in the page using? ...
1
vote
0answers
278 views

Web User Control Library in VS2010 & .net 4?

Is it possible to somehow load Web User Controls from another project / class library using Visual Atudio 2010 and ASP.NET 4.0? I only found THIS (all the other are for VS2008 & ASP.NET 2.0 or ...
1
vote
1answer
494 views

ASP.NET - How do I register multiple JavaScript calls to run on PostBack?

I have an ASP.NET page with two instances of the same Web User Control (a simple WYSIWYG editor). On submit, the WUCs do a little JavaScript magic and then proceed with a normal postback. The first ...
1
vote
1answer
34 views

Can I develop visual studio extension for viewing Web User Control in temp web page?

I work now in a huge project that we build all interface as Web User Controls .. every time I want to view & test one i should add it in web page and then view .. I think in a way to develop a ...
1
vote
1answer
696 views

ASP.NET/AJAX - Web user control update panel triggering from outside

I've got an web user control with an updatepanel. On my mainpage I got like 3 of those controls. Now I want to have an timer in the mainpage which would trigger the updatepanels in the web user ...
1
vote
1answer
169 views

How do I customize the ASP.Net Bubble Event to pass an additional variable?

I am using BubbleEvent to give events from a web user control to its parent (which is a Default.aspx with code behind page). I would like to use BubbleEvent to not only pass the sender and event, but ...
1
vote
2answers
371 views

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

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 ...
1
vote
2answers
1k 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 ...
1
vote
2answers
3k 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 ...
0
votes
1answer
56 views

User Controls Asp .Net

Task – develop user control, which has two properties: begin date (optional and read-only), end date (mandatory and updatable). Both should be able to be bound thru native ASP.NET2.0 data-binding ...
0
votes
0answers
9 views

Issue passing in CommandEventArgs with RaiseBubbleEvent

I have a button in a user control in the method I am calling RaiseBubbleEvent the OnBubbleEvent works fine if I do not set any values for the CommandEventArgs like RaiseBubbleEvent(null,null); But ...
0
votes
1answer
31 views

WebUserControl dynamic content?

I have create a WebUserControl which consists for three html controls, tow buttons and one input text. Each of these controls have static id, is that wrong i don't think so. The control events are ...
0
votes
0answers
37 views

Client script library for ASP.net controls and how these works?

I have been working on .Net platform for 2 year and right now i am working on DevExpress controls for 6 months. All these control have client-side Events which are under some ClientScript nameSpace of ...
0
votes
0answers
41 views

How can I multi-communication between user controls?

My English is poor. Sorry... I have 3 or more user controls. etc. UC1, UC2, UC3... And I am adding user controls as dynamically to Page. I want to communicate between these user controls. But as ...
0
votes
0answers
29 views

Can ascx control operate on multiple presenters,views? MVP

Is there any solution to make ascx user control which will be used with multiple presenters and views? I do not want to duplicate web code. I want write one control which will look same in different ...
0
votes
1answer
40 views

Web User Control output caching when output caching is already enabled at the page level

Easy question hopefully. . . Is there any benefit to be gained by turning on output caching on Web User Controls if the pages they are displayed on already have output caching turned on? My guess ...
0
votes
1answer
34 views

Initialization in Asp.NET Master Page

I need to do a dynamically loaded Header and Footer on Master page where there are two placeholders to store the users controls which will become the Headers and Footers. The reason why I am doing it ...
0
votes
1answer
71 views

Why the button event of a web user control does not fire?

My web user control is <asp:DropDownList ID="cmbList" runat="server"> </asp:DropDownList> <asp:ImageButton ID="btnDoSub" runat="server"/> in my webpage, at the Init part, i add ...
0
votes
0answers
42 views

how to find a control that was added at run-time

I have created a user control that contains a RadionButtonList and a Button. The user control is located in a wizard control. When I click the the button, the onclick method is supposed to scan the ...
0
votes
1answer
146 views

Trigger update of UpdatePanel inside user control?

Is there any way to trigger update of updatepanel inside a web user control through use of a property ? This does not work public bool RefreshExclusions { set { upnl1.Update(); } ...
0
votes
3answers
990 views

Asp.net user control with inner controls

I need to develop a template-like user control, which would accept any arbitrary content, including other controls. WmlCard.ascx <asp:PlaceHolder ID="phContent" runat="server"> <card ...
0
votes
0answers
277 views

Add row to table inside user control

I have a user control containing a table (but not only a table). I want this control to accept table rows (and only table rows) as child controls and add them to the table: MyTable.ascx <%@ ...
0
votes
1answer
337 views

Display ASP.NET VB User Control property in VS IDE

I built a VB ASP.NET 1.1 Web User Control that contains several properties. I want these properties to display in the VS2003 IDE Properties window, for easy manipulation. However, none of the ...
0
votes
3answers
491 views

Get Control Value From Web User Control

Lets say I have three DropDownList controls in a web user control and they depend on each other. Categories Brands Products Explanation: After I choose a category from Categories dropdown list, ...
0
votes
1answer
184 views

ASP .NET Web User Control Events

I have created a web user control called Activity. I have defined a public-facing event on that web user control called OnActivityDelete. There is a delete button in the Activity control. When the ...
0
votes
1answer
926 views

Call a function of a Web User Control from the parent page

I'm creating a comments web user control. I want to use this comments control on distinct pages like: articles, attractions and categories. So, on the articles page I delcare the Web User Control ...
0
votes
2answers
376 views

Horizontally align rows in multiple tables using web user control

I need to align rows in different tables that are layed out horizontally. I'd prefer to put the html code in a single web user control so I can create as many instances of that control as I want and ...
0
votes
3answers
157 views

sharing web user controls across projects

I've done this using a regular .cs file that just extends System.Web.UI.UserControl and then included the assembly of the project that contains the control into other projects. I've also created ...
0
votes
2answers
447 views

How do I use the same Web User Control in two different DotNetNuke (DNN) modules?

I am developing a number of modules for a client that will share some user interface functionality using a common Web User Control to provide the UI. When I wrote the first module and added in the ...
0
votes
1answer
263 views

Web User Controls, Javascript and Script Managers

Is there a way to only add a script manager to your Web User Control if there is not one already on the page (on the main page or if you are using the Web User Control multiple times)? Same question ...
0
votes
3answers
4k views

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

I have this set up... <%@ Register TagPrefix="UserControl" TagName="UserLogin" Src="~/admin/Authentication/Login.ascx" %> <%@ Register TagPrefix="UserControl" ...
0
votes
3answers
4k 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
261 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
2k 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
438 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 ...
0
votes
2answers
243 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 ...

1 2