Hi,
We have web application developed in VS 2003, and also used extensively Mobile Web Forms. We used device specific rich rendering for Pocket IE using asp.net controls instead mobile controls.
I installed VS 2005 professional addition, and then downlaod and installed web application project as explained in link http://webproject.scottgu.com/CSharp/migration/migration.aspx.
I am having two major problem after conversion.
1. It converted and compiled the project successfully. But when I try opening any Mobile web form and go to design mode, I get an error. I did not convert the pages to use partial class feature.
2. Later I converted project to use partial class feature, and then it generated lots of error for mobile web form and mobile user controls. mainly the error is becuase what ever asp.net control we are using in mobile web form inside device specific tag, we defined those controls in aspx.cs file as member variable, so that we can use across the page. But when it converted to partial class and generated two cs (one for code and other for designer) none of them had those member variable defined.
Thanks in advance for your help.