Redering asp.net webform dynamically

  • Thread starter Thread starter Anoop M
  • Start date Start date
A

Anoop M

Whether there is any available libraries to render an asp.net webform
dynamically at run time, from an xml definition?


Like

<Page>
<control class="System.Web.UI.WebControls.Textbox" id="Textbox1">
<property name="backcolor" value="red" />
</control>
</Page>

Should be rendered in the webform.

Thanks a lot,
Anoop
http://amazedsaint.blogspot.com
 
What exactly are you trying to accomplish? Literally everything on your page
can be "dynamically" loaded when the page is built; that's the concept
behind the control structure of the page being a tree: you can add/remove
nodes as you like.

Having something which builds a page out of XML would be just as useful as
something which builds a page out of ASP.Net markup....
 
Actually, I've to build a dynamic UI module in a project - where the user can define the form structure at run time, and bind to fields in a web service.

The schema of the dataset accepted by the webserice is not known during design time. Hence, the UI should also change based on the fields in the dataset accepted by webservice.

Thanks a lot,
Anoop
http://amazedsaint.blogspot.com
 
Back
Top