Skip to content

Instantly share code, notes, and snippets.

@abhi1010
Created May 6, 2014 07:24
Show Gist options
  • Save abhi1010/bfb075b6787d2616fde6 to your computer and use it in GitHub Desktop.
Save abhi1010/bfb075b6787d2616fde6 to your computer and use it in GitHub Desktop.
Custom Web Controls - On Pre Render
protected override void OnPreRender(EventArgs e)
{
base.OnPreRender(e);
string resourceName = "ExtendedControls.HoverImageButtonJS.js";
ClientScriptManager cs = this.Page.ClientScript;
cs.RegisterClientScriptResource(typeof(WizWerx.Web.UI.ExtendedControls.HoverImageButton), resourceName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment