Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
126 views

Why wouldn't the default Control Adapter mappings work on Chrome or Safari?

I have confirmed that my Control Adapters are not triggering in Chrome and Safari. I've debugged, and the breakpoints inside the adapters just don't get hit in Chrome/Safari, when they work perfectly ...
1
vote
1answer
1k views

C#.Net - RadioButton Control adapter and postback

I have a radio button control adaptor that attempts to render the radio button control with the CSS class as part of the input tag, rather than as a surrounding span. public class RadioButtonAdapter ...
0
votes
0answers
24 views

Render semantic checkbox list with label enclosing the checkbox for large hit area

I am developing a control adapter and it seems the default implementation renders label and then checkbox which i don't desire. Here is render code IRepeatInfoUser repeatInfoUser = _internalCheckbox; ...
0
votes
1answer
463 views

In ASP.NET 2.0 how do I remove the extra tabs and line breaks from the rendered page/control output?

I have been researching this one for awhile. I found several resources on the subject and they all tend to use the same approach - override Page.Render, use the HtmlTextWriter to convert the output ...
0
votes
1answer
92 views

If not rendering for specific browsers, why use an adapter over extending the ASP.Net controls?

My understand of Control Adapters is that they're designed to allow different HTML rendering for different browsers (thus, you register them in the .browsers file...). However, it appears people are ...
0
votes
1answer
647 views

How to build ImageButton Control Adapter (or more general, how to build a simple control adapter)?

My inspiration for this question was my discovery of the very annoying default style (border-width: 0px;) on the ImageButton web control. The simple solution is to override it by adding your own style ...