Anyone know how to call this function from a web control? I'd prefer to keep the code in the controls code behind, as opposed to putting it in the page itself.
I tried just throwing
protected void Page_LoadComplete(object sender, EventArgs e)
In the code behind on the control, but it never gets fired. Also, I don't want to set autoevenwireup to true, I'd just like to manually call this. Javascript maybe?
Go to the complete details ...