So, I\'m working on this project between my laptop and my desktop.
The project works on the laptop, but now having copied the updated source code onto the desktop, I
I came across a similar problem with a meta tag. In the designer.cs, the control was defined as:
designer.cs
protected global::System.Web.UI.HtmlControl.HtmlGenericControl metatag;
I had to move the definition to the .aspx.cs file and define as:
.aspx.cs
protected global::System.Web.UI.HtmlControl.HtmlMeta metatag;