I have a 3rd part control(it is a COM and it is not a server control).
<object id="SigPlus1" classid="clsid:69A40DA3-4D42-11D0-86B0-0000C025864A"
name="SigPlus1" style="left: 0px; width: 544px; top: 0px; height: 86px">
<param name="_Version" value="131095">
<param name="_ExtentX" value="14393">
<param name="_ExtentY" value="2275">
<param name="_StockProps" value="9"></param>
</param>
</param>
</param>
</object>
In the C# code behind I use:
object o = (Page.FindControl("SigPlus1")
There is no error but o is set to null.
I know this object has a property named colormode, how can set this in the code behind
runat="server"on that tag, that means it's not a control and thereforeFindControlisn't going to find it.