I have an Asp.net web app with some forms that were orginally developed in Asp.net 1.1. They have be imported into Asp.net 4.0 with VS 2012 and seem to be working fine.
Should I replace the InitializeComponent() framework (see below) or just leave it as it is?
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
     'CODEGEN: This method call is required by the Web Form Designer      'Do not modify it using the code editor.      InitializeComponent() End Sub

Private Sub InitializeComponent()      ...sql command statements End sub

Go to the complete details ...