Search Results

1
vote
5answers
853 views

How can you move ASP.Net controls to different places on the Web form at runtime?

Is there an accepted way to "move" a control. My client wants to place a certain chunk of markup (representing some visual element) in one of several different places on the page. The loca …
0
votes
2answers
40 views

Is there a non-iterating control that allows data-binding syntax to be used?

Let's say I have a single XML node of content in my code-behind. I need to get some data out of the various nodes and onto a Web form. Traditionally, I would create a bunch of Literals on …
0
votes
2answers
38 views

What’s the best way to pass complex data into an ASP.Net control?

I want to pass complex information into a control. The equivalent of an entire XML document. What would be the best way to accomplish something like this: <MyPrefix:MyControl r …
0
votes
1answer
47 views

Can an ASP.Net control be configued to accept ANY attributes, even ones not defined as properties in the class definition?

Is it possible to define a control to have non-specified set of attributes? For instance: <MyPrefix:MyControl SomeAttribute="SomeValue" runat="server"/> I d …