Tagged Questions

4
votes
2answers
43 views

Allowing any property/attribute on a server/usercontrol

I've noticed that on most, if not all, standard web controls in the System.Web.UI.WebControls namespace, you can add any properties you want to them without crashing the page. Tak …
0
votes
1answer
112 views

ASP.NET server control: how to convert design-time string into object type (TypeConverter?)

So hopefully this is a silly question (that would make it easily answered). I'm trying to make a composite server control that encapsulates a TextBox, some validators and other st …
0
votes
1answer
42 views

Server control losing mousedown event handler on callback

I have a composite server control that contains a div to which I attach a right click event handler in the Render method (simplified for clarity): protected override void Render(H …
0
votes
2answers
66 views

Create server control like panel and linklabel using javascript.

I want to add panel control using javascript inside the TD element. Is it possible to create these control using Document.createElement and appendChild methods? I also want to …
3
votes
1answer
708 views

How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?

In this tutorial I am reading, Dave Ward creates a page that shows the server date in a label without using the update panel. I am trying to learn how to create servercontrols th …