Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hermanussen/2c2456940af065fcb2ab4e4e659ad103 to your computer and use it in GitHub Desktop.
Save hermanussen/2c2456940af065fcb2ab4e4e659ad103 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI.WebControls;
namespace Website.Controls
{
public class DataPlaceHolder : PlaceHolder
{
protected override void DataBindChildren()
{
if (Visible)
{
base.DataBindChildren();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment