A third-party webcontrol generates the following code to display:
<div id="uwg"> <input type="checkbox" /> <div>blah-blah-blah</div> <input type="checkbox" /> </div>
Is it possible to change it to
<div id="uwg"> <input type="checkbox" disabled checked /> <div>blah-blah-blah</div> <input type="checkbox" disabled checked /> </div>
When we push
<asp:CheckBox id="chk_CheckAll" runat="server" AutoPostBack="true" />
is on the same page?
We need to do this on the server side (in ASP.NET).
This third-party control does not provide an interface for this, so the only option is to work with html output. What page event should be handled (if any)? Also, is there any equivalent to the DOM model, or do I need to work with the output as a string?
Roma
source share