Is it a good programming way to use xml config file for building dynamic web interface with databinding, events etc ..?
<Sub Name="Matrix Report" Url="frmGridReportPanel.aspx">
<Report Name="Repor Name" src="ConnectionStr" Url="frmGridReportPanel.aspx">
<DataSource>
<Server Type="Table">View_REPORT1</Server>
<Client>null</Client>
</DataSource>
<FIELDS>
<FIELD type="DropDownList" id="Table_ID" name="Table_Field_name" required="true">
<LOOKUP>MyTable</LOOKUP>
<DIMENSION>Table_ID</DIMENSION>
<DATATYPE>Int</DATATYPE>
<LENGTH>12</LENGTH>
<OPERATOR>=</OPERATOR>
</FIELD>
.....
</FIELDS>
</Report>
....
<Sub/>
This is my xml. How i can configure the event triger for the controls.
Is there any open source that use xml congig file for build dynamicly the web page?
Any ideas?