I have migrated the application in asp .net 1.1 to 4.0 successfully using wizard.
But i am facing some issues in follwoing senario
Application uses one dll which contains 2 overloaded methods as below
public static UltraWebGrid EncodeDatagrid(Infragistics.WebUI.UltraWebGrid.UltraWebGrid dg)
{
return dg;}
public static DataGrid EncodeDatagrid(DataGrid dg)
{
return dg;
}
when i am calling EnocdeDatagrid in the application as below
Protected WithEvents grdArea As System.Web.UI.WebControls.DataGrid
EncodeDatagrid(grdArea)
getting the following compile time error
"Reference required to assembly 'Infragistics.WebUI.UltraWebGrid.v5.1, Version=5.1.20051.37, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' containing the type 'Infragistics.WebUI.UltraWebGrid.UltraWebGrid'. Add one to your project. C:\Inetpub\wwwroot\AphelionDotNet\Lockers\AddArea.aspx.vb"
DeepaliN
Member
6 Points
5 Posts
Migration from ASP .Net 1.1 to 4.0
Feb 03, 2012 10:00 AM|LINK
I have migrated the application in asp .net 1.1 to 4.0 successfully using wizard.
But i am facing some issues in follwoing senario
Application uses one dll which contains 2 overloaded methods as below
public static UltraWebGrid EncodeDatagrid(Infragistics.WebUI.UltraWebGrid.UltraWebGrid dg) { return dg;} public static DataGrid EncodeDatagrid(DataGrid dg) { return dg; }when i am calling EnocdeDatagrid in the application as below
getting the following compile time error
"Reference required to assembly 'Infragistics.WebUI.UltraWebGrid.v5.1, Version=5.1.20051.37, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb' containing the type 'Infragistics.WebUI.UltraWebGrid.UltraWebGrid'. Add one to your project. C:\Inetpub\wwwroot\AphelionDotNet\Lockers\AddArea.aspx.vb"