iFrame parser error after upgrading to .NET 4.5

The basic problem is an incompatibility between the object generated from your Web Forms IFRAME server control by the ASP.NET compiler (which compiles ASPX and ASCX files to C# or VB code) and the type of the variable corresponding to that control in your Web Forms code behind. An IFRAME server control (<iframe id=”frame” runat=”server” … Read more

TLS 1.2 in .NET Framework 4.0

If you are not able to add a property to system.net class library. Then, add in Global.asax file: ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; //TLS 1.2 ServicePointManager.SecurityProtocol = (SecurityProtocolType)768; //TLS 1.1 And you can use it in a function, at the starting line: ServicePointManager.SecurityProtocol = (SecurityProtocolType)768 | (SecurityProtocolType)3072; And, it’s being useful for STRIPE payment gateway, which only … Read more

Windows Server 2008 R2 – RDSH – Registry bloat with Samsung Universal Print Driver

I had the exact same issue and can confirm it is fixed in the new version of Samsung Universal Print Driver 2 (2.50.5) . I was also running 2.50.2 and the key in question was using 275MB. Simply uninstalling the old version and installing the new version on the server (I did not update any … Read more