If you have to use a workaround you should always comment your code.
In your code add comments with:
"This is a workaround as per the suggestion [URL]"
Figure: Always add a URL to the suggestion that you are compensating for
You have just added a grid that auto updates, but you need to disable all the timers when you click the edit button. You have found an article on Code Project (http://www.codeproject.com/Articles/39194/Disable-a-timer-at-every-level-of-your-ASP-NET-con.aspx) and you have added the work around.
Now what do you do?
protected override void OnPreLoad(EventArgs e){//Fix for pages that allow edit in gridsthis.Controls.ForEach(c =>{if (c is System.Web.UI.Timer){c.Enabled = false;}});base.OnPreLoad(e);}
Figure: Work around code in the Page Render looks good. The code is done, something is missing