How to dynamically generate data with .ascx?for example I connect a control on the page
<%@ Register TagPrefix="custom" Namespace="VirusBlokAda.CC.CustomControls" Assembly="CustomControls" %>
add control to page
<custom:Tree runat="server"/>
now I add mu attribute to control.
<custom:Tree runat="server" name="vova"/>
and data vova appear somewhere on the page(marking in control)
It is possible?
Go to the complete details ...