Migrating to .Net Framework 4.5 or Heigher
-
Hi Everyone, I am migrating my asp.net Cms website from .net framework from 3.5 to .net 4.5.1. I faced some generic controls issues just like Iframe isn't support under HtmlControl but 'asp:HtmlIframe' contrl is introduced. How you take this change ? Good for an application. I got bothered as it's an manual change but should be autom migration.
Thanks & Regards Puneet Goel Save Paper >> Save Tree >> Save Huminity
-
Hi Everyone, I am migrating my asp.net Cms website from .net framework from 3.5 to .net 4.5.1. I faced some generic controls issues just like Iframe isn't support under HtmlControl but 'asp:HtmlIframe' contrl is introduced. How you take this change ? Good for an application. I got bothered as it's an manual change but should be autom migration.
Thanks & Regards Puneet Goel Save Paper >> Save Tree >> Save Huminity
Well.. I'd start by asking in the correct forum. This it the lounge; general chat, NO programming questions. There are various forums to ask in, try there. This is the most civil response you will get to a programming question in the lounge.
-
Hi Everyone, I am migrating my asp.net Cms website from .net framework from 3.5 to .net 4.5.1. I faced some generic controls issues just like Iframe isn't support under HtmlControl but 'asp:HtmlIframe' contrl is introduced. How you take this change ? Good for an application. I got bothered as it's an manual change but should be autom migration.
Thanks & Regards Puneet Goel Save Paper >> Save Tree >> Save Huminity
Assuming you intended this to be a technical discussion, and not a programming question... There was a similar issue moving from ASP.NET 2.0 to 3.5, where the
tbody
,thead
andtfoot
were changed fromHtmlGenericControl
to specific controls. Fixing it involved manually changing the.designer.cs
file, or cutting the offending elements out and pasting them back in. Predictably, this rather annoying behaviour is "by design": https://support.microsoft.com/kb/941824[^] Projects which useCodeFile
instead ofCodeBehind
shouldn't be affected by this type of change, as the fields representing the controls are automatically generated by the compiler.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer