Posted on: 2/14/2014 3:32:39 PM | Views : 727

I'm having problems with old solutions being run in the new frameworks. The designer keeps recreating things like update panel from places in the dll that do not exist anymore i.e(
'''<summary> '''chartIndicators control. '''</summary> '''<remarks> '''Auto-generated field. '''To modify move field declaration from designer file to code-behind file. '''</remarks> Protected WithEvents chartIndicators As Global.System.Web.UI.WebControls.Chart In the newer asp.net it is under datvizualization.charting.chart. I even added the chart namespace in my web config but no luck. The designer whenever you make a change it reverts it back. For right now I'm adding the correct implementation out of the designer and in to my aspx.vb so the designer quit overriding it. Is there someway to fix the designer so I don't have to do this for every page.

Go to the complete details ...