Sorry...just a newbee question....what is the benefit of creating a server side ajax control (custom or otherwise) that implements the IScriptInterface? The one thing you can do is to set js object values using tags, such as -
<ctrl:ServerAjaxCtrl ID="Ctrl1" prop1="val1" prop2="val2" runat="server" />
But you can do this using just client side javascript as well from what I am seeing....so I can do -
$create(myControls.Ctrl1, {"prop1":"val1","prop2":"val2"}, null, null, $get("Div1"));
So why would I do the former versus the latter? Is it because it gives me more dynamic control if I use a server side control for this?
Thanks in advance,
Jake.