Created
May 6, 2014 07:24
-
-
Save abhi1010/bfb075b6787d2616fde6 to your computer and use it in GitHub Desktop.
Custom Web Controls - On Pre Render
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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