Skip to content

Instantly share code, notes, and snippets.

@spkellydev
Created January 3, 2020 14:15
Show Gist options
  • Save spkellydev/83fd288df279dd3405a7cec92631e10d to your computer and use it in GitHub Desktop.
Save spkellydev/83fd288df279dd3405a7cec92631e10d to your computer and use it in GitHub Desktop.
public abstract class RadTabLoadHack : System.Web.UI.UserControl
{
protected override void OnLoad(EventArgs e)
{
if (this.Visible)
{
base.OnLoad(e);
}
}
}
public partial class AttenuatorAdmin2 : RadTabLoadHack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment