A third-party's webcontrol generates the following code to display itself:
<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 click on
<asp:CheckBox id="chk_CheckAll" runat="server" AutoPostBack="true" />
located on the same page?
We need to do it at server side (in ASP.NET).
That third-party's control does not give interface for this, so the only possibility is to work with html output. Which page event should I handle (if any)? Also, is there some equivalent to DOM model, or I need to work with output as string?