2
votes
3answers
36 views
Encapsulating User Controls in ASP.NET MVC
Sorry if this is a basic question - I'm having some trouble making the mental transition to ASP.NET MVC from the page framework.
In the page framework, I often use ASCX files to c …
0
votes
3answers
36 views
Is it possible to create a .ascx virtually? i.e. not on disk, but as a string?
I was wondering if it was possible to load a asp.net control (.ascx) that doesn't reside on the file system?
Like say a string variable?
2
votes
4answers
44 views
How to know when a UserControl has finished firing an Event?
we have a UserControl to handle User cancellations, that is used in a few places. This has a couple of input fields and a submission button. When they submit the User's status is u …
0
votes
2answers
20 views
Asp.Net CreateChildControls() - Re create controls with Postback data - Event
I have a WebPart custom control (Composite) in .Net, which gets created on page load to show a Chart using 'Dundas Charting Controls' (this is created by a user control inside the …
0
votes
1answer
45 views
ASP.NET: Viewstate and programmatically adding user controls
When programmatically adding user controls using LoadControl(string path), when, in the user control's page life cycle, does it initialize its sub-controls with its viewstate?
I' …
0
votes
2answers
44 views
ASP.NET C# - Removing a column from a datalist
I have a datalist inside a usercontrol that gets loaded into a page where users can customize a report based on some checkboxes.
One of the checkboxes, however, is "Hide Worklog" …
0
votes
4answers
36 views
Adding ASP.NET control to page using jQuery
I'm writing an ASP.NET app in which a table of objects is created by the user client-side.
I envisage them clicking "Add item" and a new 'row' is created in the table with textboxe …
1
vote
4answers
82 views
Winform not rendering control alterations
Hi All :)
I've created a winform in c#, I have 3 controls on the pages and another control and is created programmatically on one of the original controls. It's not rendering, so …
1
vote
1answer
52 views
The best free ASP.Net user controls?
Hi,
I'm working now since 2 month with ASP.Net and have round about 400 work hours done with it, so I'm not a newbie, not a pro.
I inform very well and found ever and ever user c …
0
votes
3answers
46 views
ASP.NET: How to destroy dynamically added User Control
I added user control to a PlaceHolder with an ID phCustomFields. When I want to remove the user control in phCustomFields, i call phCustomFields.Controls.Clear(). However, after do …
0
votes
3answers
33 views
Letting users custom skin
As an exercise, I'm trying to wrap my head around what goes into letting a user custom skin their profile (like myspace as an example). I'm using PHP. Since I'm clueless as to the …
1
vote
4answers
71 views
Programmatically using UserControls
I have a project where I made a couple user controls: a Legend, and a Legend Item.
On my web page, I am retrieving a collection of information that I want to load into LegendItem …
1
vote
3answers
55 views
ASP.NET: User control with access to the controls that it wraps
I have a bunch of occurrences of this kind of boilerplate code in my ASP.NET project.
<div class="inputfield">
<div class="tl">
<span class="tr"><!-- -- …
0
votes
0answers
12 views
StaticMenuItemStyle vs. StaticSelectedStyle - Does one overwrite the other?
I am building a custom asp:menu control in ASP.NET using C# code behind. It is based on the sitemap to my website. Here's the basics of the menu:
<%@ Control language="C#" auto …
0
votes
2answers
69 views
C# .NET Compact Framework, custom UserControl, focus issue
I have a custom UserControl (a label and a textbox).
My problem is I need to handle the key down, key up events to navigate between controls in the form (.NET Compact Framework te …
