Skip to content

Instantly share code, notes, and snippets.

@abhi1010
Created May 6, 2014 07:33
Show Gist options
  • Save abhi1010/d0b66ef7b0f076e88042 to your computer and use it in GitHub Desktop.
Save abhi1010/d0b66ef7b0f076e88042 to your computer and use it in GitHub Desktop.
Custom Web Controls - OnInit
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
this.Attributes.Add("onmouseover", "ShowImageHoverButton(this, '" + this.ResolveUrl(ImageHoverUrl) + "')");
this.Attributes.Add("onmouseout", "ShowImageHoverButton(this, '" + this.ResolveUrl(ImageUrl) + "')");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment