Tagged Questions
The custom-server-controls tag has no wiki summary.
26
votes
9answers
15k views
Dropdownlist control with <optgroup>s for asp.net (webforms)?
Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
10
votes
4answers
4k views
How to take control of style sheets in ASP.NET Themes with the StylePlaceHolder and Style control
Update: This turned into a blog post, with updated links and code, over at my blog: ...
7
votes
5answers
60k views
ASP.NET / C#: DropDownList SelectedIndexChanged in server control not firing
I'm creating a server control that basically binds two dropdown lists, one for country and one for state, and updates the state dropdown on the country's selectedindexchanged event. However, it's not ...
6
votes
6answers
888 views
Should I buy Obout? Help, Please
We started a new project and the nature of the project is very interactive and a Rich UI is required.
We would need a set of controls that would require for Rich UI development. I found Obout while ...
5
votes
6answers
2k views
Custom Server Control causes full postbacks inside of UpdatePanel
I have a custom server control that seems to work fine until I put it in an UpdatePanel. Once inside the UpdatePanel it continues to work fine but the UpdatePanel now does full postbacks when my ...
5
votes
2answers
834 views
How do you build an ASP.NET custom control with a collection property?
I'm looking to do something akin to
<cstm:MyControl runat="server">
<myItem attr="something" />
<myItem attr="something" />
</cstm:MyControl>
What's the bare bones ...
4
votes
1answer
100 views
Creating a simple templated control. Having issues
I'm trying to create a really simple templated control. I've never done it before, but I know a lot of my controls I have created in the past would have greatly benefited if I included templating ...
4
votes
1answer
1k views
How to embed JQuery into custom server control
I am writing a server control that is a search box with suggestions (when the user starts typing, matching words will appear for them to select). I am using jquery and C#.
The control works fine ...
4
votes
1answer
189 views
How Do I Change the render behavior of my custom control from being a span
When writing a custom control it always rendered as an HTML span element.
How can I change it for example to a div?
4
votes
3answers
4k views
How To: Use AJAX in an ASP.NET Custom Server Control
Does anyone know of a good tutorial that demonstrates using an existing AJAX control extender in a Custom ASP.NET Server Control?
I do not want to build a "Custom AJAX Server Control". I want to ...
4
votes
6answers
8k views
ASP.NET inject javascript in user control nested in update panel
I'm trying to load javascript code with a user web control into a page via a the Page.LoadControl method during an asyncron post back of an update panel.
I've tried the specially for that scenario ...
4
votes
3answers
2k views
How do I enable ViewState for child custom controls when disabled in parent?
I am trying to create a custom control that a "gridview" like control but specifcally for business objects that implement certain custom interfaces.
In doing this I have come across the following ...
4
votes
5answers
2k views
ASP.NET Custom Controls - Alternatives to PostBack?
On my journey into the depths of custom ASP.NET control development I am obviously getting my head around the ASP.NET PostBack model and how it affects control development.
I understand that controls ...
3
votes
3answers
104 views
How to register a client script resource at the bottom of webpage to enhance loading time
I really hate the way Extender controls, Asp.net script controls that emit javascript all at the top of the web page and just was rethinking of any other way to emit it at the bottom similar to what,
...
3
votes
2answers
359 views
User controls & Composite web server controls
Well Its both a poll and a question. Which approach should i prefer when it comes to writing a custom control in ASP.Net. Should i create a custom User control or should I create a Composite Web ...
3
votes
1answer
462 views
How to build a GridView like DataBound Templated Custom ASP.NET Server Control
I am trying to develop a very simple templated custom server control that resembles GridView. Basically, I want the control to be added in the .aspx page like this:
<cc:SimpleGrid ...
3
votes
4answers
260 views
Recommendations for a ASP.NET Forum control?
I am looking for a Forum server-side asp.net control that will integrate into my asp.net 3.5 site.
I've seen a ton over at www.asp.net in their gallery page, but almost none have ratings, so ...
3
votes
2answers
208 views
Generic ServerControl syntax?
Is there a way that I can have a server control
MyControl<T>
so that I can register and use it in an aspx page like so
<mc:MyControl<ThingForControlToUse> ID="instanceOfMyControl" ...
3
votes
1answer
2k views
ASP.net weekly schedule control
Can anyone recommend a free asp.net control that I can use for the following:
Weekdays Monday-Saturday along the top row
Time of day along left hand side
Template fields for the actual data
...
3
votes
2answers
2k views
ASP.NET 2.0 add styles dynamically to page in a control
I need to add to the page from within a custom control. I can't use a stylesheet (.css) because I'm using a url(...) and need to resolve the url.
Right now I'm doing:
Page.Header.Controls.Add(new ...
3
votes
5answers
4k views
How to persist List<T> property in ASP.NET Custom Control?
I have the following property in a custom control:
List<myClass> _items;
public List<myClass> Items{
get { return _items; }
set { _items= value; }
}
In my codebehind, I add ...
3
votes
4answers
2k views
Child Control Initialization in Custom Composite in ASP.NET
Part of the series of controls I am working on obviously involves me lumping some of them together in to composites. I am rapidly starting to learn that this takes consideration (this is all new to ...
3
votes
3answers
2k views
ASP Nested Tags in a Custom User Control
I'm just getting started with Custom User Controls in c# and I'm wondering if there is any examples out there of how to write one which accepts nested tags. For example, when you create an ...
3
votes
2answers
869 views
UserControl rendering: write link to current page?
I'm implementing a custom control and in this control I need to write a bunch of links to the current page, each one with a different query parameter. I need to keep existing query string intact, and ...
2
votes
2answers
44 views
Custom server control sets properties to default on postback
By following a tutorial aimed at creating a video player I adapted it to build a HTML5 range control. Here is my code:
namespace CustomServerControls
{
[DefaultProperty("Text")]
...
2
votes
1answer
53 views
ASP.NET Custom Server Control with lots of Embedded JavaScript and other Static Files
I am trying to create a Custom Server Control with lots of JavaScript and other static files embedded.
My problem is how to bundle and register them easily. I have an approach as follows but I don't ...
2
votes
1answer
182 views
How do I make child controls in Collection behave as child controls and/or get skin applied?
I am trying to create a server control with child controls that are exclusively derived from a particular class. The child controls in this case are all custom server controls also. This particular ...
2
votes
1answer
414 views
With VS 2010 create ASP.NET composite custom server control with JQuery (CDN) as embedded resource?
First time asking a question so sorry if incorrect.
After beating my head against the wall, and with no hair to pad it I am finally asking for direction. Most books, posts and articles on what I am ...
2
votes
2answers
169 views
How can I replicate If…Then logic as a Web control?
I have a designer working at the ASPX level. He doesn't do C#, doesn't do code-behinds, doesn't compile, etc. He's a pure designer, working with HTML and server controls.
I need a conditional ...
2
votes
1answer
251 views
Invoking code both before and after WebControl.Render method
I have a set of custom ASP.NET server controls, most of which derive from CompositeControl. I want to implement a uniform look for "required" fields across all control types by wrapping each control ...
2
votes
2answers
794 views
Using custom WebControl as DefaultButton for Panel
I have created a custom web control to act as a button with an image. I would like to be able to set this as the target of the DefaultButton parameter of an ASP.NET Panel control. I have implemented ...
2
votes
3answers
1k views
asp.net Web server control with child controls, event not firing
I have a simple web control (TaskList) that can have children (Task) which inherit from LinkButton, that can be added declaratively or programatically. This works ok, but I can't get the onclick ...
2
votes
1answer
833 views
ASP.NET StateBag and Custom Controls
Lets pretend that for some reason I want to create a custom control that is derived from Control and not WebControl. Let us also assume that I need to process attributes (i.e. implement ...
2
votes
3answers
1k views
Implement a HierarchicalDataBoundControl for ASP.NET
I want to implement a Hierarchical data bound control for ASP.NET.
I used Implementing IHierarchy Support Into Your Custom Collection as a basis to create my hierarchical collection. I also created a ...
2
votes
3answers
521 views
.Net Repeater equivalent for a single object?
Could someone try to recommend the best cause of action to solve the request below:
I have created a number of extended classes using the Repeater class as a Base and love the flexibility, the ease ...
2
votes
1answer
179 views
Overriding Controls Collection on WebControl
I am trying to override the Controls collection of a control that inheirts from WebControl so that when a user adds controls to the webcontrol I can put buttons before and after it and kind of put it ...
2
votes
2answers
386 views
What place for server controls in ASP.Net MVC?
What is the recommended replacement of ASP.Net server controls in the bright new world of ASP.Net MVC?
In my opinion, one of the best features of ASP.Net is the ability to write server controls ...
2
votes
3answers
588 views
inherit from asp:validationsummary
i have the requirement to show a nicely formatted error-message on top of the page (or control).
therefore i implemented the render method of a new created server control. the new created control ...
2
votes
3answers
729 views
Custom Server Control that can be dragged into design view in Visual Studio
How do I setup a custom server control, so that it can be dragged into a design view in Visual Studio?
I have create a separate ASP.NET Server Control project and a custom MailLink control, basically ...
2
votes
3answers
503 views
Displaying available strongly typed resource classes in Property Window
I'm extending the Gridview Web Control as my first attempt at creating a custom control.
As part of the extension I am encapsulating the localization of the grid column headers within the control. ...
2
votes
3answers
3k views
ASP.NET Treeview control supporting drag & drop?
Can anybody recommend a treeview component for ASP.NET that supports drag & drop (between it's own nodes - it's for a content management system to rearrage the pages). Don't mind if it's open ...
2
votes
2answers
1k views
Render Self-Closing Tag in ASP.NET custom control derived from Control
I'm working on a Facebook FBML controls library and would like to create my FBML controls somewhat patterned like the ASP.NET WebControls library. I have a base class that handles rendering by ...
2
votes
3answers
909 views
jQuery - Ajax
In A.ascx I have one DropDownList and one DIV. The DropDownList is populated dynamically.
How do I load B.ascx into the DIV, when the user changes the selected index in the DropDownList. This should ...
2
votes
2answers
567 views
ASP.NET custom control rendering before <%= %> code executes to populate property
I have a custom control that exposes a property. When I set it using a fixed value, everything works correctly. But if I try to set its value using the <%= %> tags, it goes a little whacky:
...
2
votes
2answers
1k views
ASP.NET Custom Controls and “Dynamic” Event Model
OK, I am not sure if the title it completely accurate, open to suggestions!
I am in the process of creating an ASP.NET custom control, this is something that is still relatively new to me, so please ...
1
vote
1answer
52 views
Create a custom label that implements IPostBackDataHandler
I want to create a label that implements the IPostBackDataHandler, because I want to change the text with javascript. If I trigger a postback after that, than my text is gone.
The code that I ...
1
vote
1answer
90 views
Cannot create an object of type 'System.Collections.Generic.List'' from its string representation '(Collection)' for the '' property
I have created a custom web server control in asp.net. I am trying to render a List of a class in the RenderContents method.
Here is my code:
[DefaultProperty("Items")]
[ToolboxData("<{0}:News ...
1
vote
2answers
55 views
Can a webforms servercontrol be used with razor in mvc ( in 3 or 4 )?
Can a webforms servercontrol be used with razor in mvc?
If there's different situations for different versions of mvc, that's fine.
Also, I believe that it is possible for usercontrols, but it's the ...
1
vote
1answer
67 views
Silverlight Deep Zoom Server Control?
The Silverlight Deep Zoom was one of those cool things that I heard about when it was introduced a few years ago, but I never got around to actually trying it out. But now is the time, and I was so ...
1
vote
0answers
50 views
Postback in server composite control
I am writing a Server Composite Control which will among other controls include a grid.
Now since events like sorting values in a column or paging are beeing handled by the grid itself (I don't have ...