473,739 Members | 9,109 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Converting .Net 2003 to .Net 2005

Does anyone have any good detailed information on the conversion process?
We are in the process of converting 2 projects from 2003 to 2005 and have
some conversion errors that I can not find answers to. First, we have a lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also, on
almost all of our UserControls the conversion has remmed out all my code -
so now essentially, they do nothing. What is going on? Why did it do this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen
Sep 19 '06 #1
7 2498
when i first began converting my more complex asp.net applications from
2003 to 2005 I kept running into problems like you describe. In the end
I bit the bullet and went through by hand and dropped my code into
newly created UserControls in the target project.

Looking at some of your problems, for instance the uc_mc_btn_foote r
error you are getting is because the way asp.net 2.0 references other
UserControls has changed. You can no longer do a direct reference to
another usercontrol in your page, you have to add the <% Reference
UserControl='my UC.ascx' /(pseudocode) in order to reference
UserControls, and then you shouldnt get the type not defined errors
anymore.

This arises another problem, when you have UserControls that need to
have a cross-reference. On this note, the "proper" thing to do is make
an interface that displays the methods/properties you need, and then
implement that interface in your UC, then when referencing UC's, use
the interface instead of the concrete usercontrol.

Here is a helpful msdn link that helped me out ALOT when converting all
of my projects:

http://msdn.microsoft.com/asp.net/re...g/default.aspx

In the end, you do have to do quite a bit of "futzing" to get all the
projects working correctly in 2005, so much so that 2 of my projects I
just decided to leave in 2003, and am now re-developing it into 2005,
mainly because these projects were sloppy in the first place and could
do with a re-design anyways, also they are very widely used
applications and I didn't want to introduce problems in the production
code as a result of the upgrade.

I hope this helps!

Sean

Coleen wrote:
Does anyone have any good detailed information on the conversion process?
We are in the process of converting 2 projects from 2003 to 2005 and have
some conversion errors that I can not find answers to. First, we have a lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also, on
almost all of our UserControls the conversion has remmed out all my code -
so now essentially, they do nothing. What is going on? Why did it do this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen
Sep 20 '06 #2
when i first began converting my more complex asp.net applications from
2003 to 2005 I kept running into problems like you describe. In the end
I bit the bullet and went through by hand and dropped my code into
newly created UserControls in the target project.

Looking at some of your problems, for instance the uc_mc_btn_foote r
error you are getting is because the way asp.net 2.0 references other
UserControls has changed. You can no longer do a direct reference to
another usercontrol in your page, you have to add the <% Reference
UserControl='my UC.ascx' /(pseudocode) in order to reference
UserControls, and then you shouldnt get the type not defined errors
anymore.

This arises another problem, when you have UserControls that need to
have a cross-reference. On this note, the "proper" thing to do is make
an interface that displays the methods/properties you need, and then
implement that interface in your UC, then when referencing UC's, use
the interface instead of the concrete usercontrol.

Here is a helpful msdn link that helped me out ALOT when converting all
of my projects:

http://msdn.microsoft.com/asp.net/re...g/default.aspx

In the end, you do have to do quite a bit of "futzing" to get all the
projects working correctly in 2005, so much so that 2 of my projects I
just decided to leave in 2003, and am now re-developing it into 2005,
mainly because these projects were sloppy in the first place and could
do with a re-design anyways, also they are very widely used
applications and I didn't want to introduce problems in the production
code as a result of the upgrade.

I hope this helps!

Sean

Coleen wrote:
Does anyone have any good detailed information on the conversion process?
We are in the process of converting 2 projects from 2003 to 2005 and have
some conversion errors that I can not find answers to. First, we have a lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also, on
almost all of our UserControls the conversion has remmed out all my code -
so now essentially, they do nothing. What is going on? Why did it do this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen
Sep 20 '06 #3
when i first began converting my more complex asp.net applications from
2003 to 2005 I kept running into problems like you describe. In the end
I bit the bullet and went through by hand and dropped my code into
newly created UserControls in the target project.

Looking at some of your problems, for instance the uc_mc_btn_foote r
error you are getting is because the way asp.net 2.0 references other
UserControls has changed. You can no longer do a direct reference to
another usercontrol in your page, you have to add the <% Reference
UserControl='my UC.ascx' /(pseudocode) in order to reference
UserControls, and then you shouldnt get the type not defined errors
anymore.

This arises another problem, when you have UserControls that need to
have a cross-reference. On this note, the "proper" thing to do is make
an interface that displays the methods/properties you need, and then
implement that interface in your UC, then when referencing UC's, use
the interface instead of the concrete usercontrol.

Here is a helpful msdn link that helped me out ALOT when converting all
of my projects:

http://msdn.microsoft.com/asp.net/re...g/default.aspx

In the end, you do have to do quite a bit of "futzing" to get all the
projects working correctly in 2005, so much so that 2 of my projects I
just decided to leave in 2003, and am now re-developing it into 2005,
mainly because these projects were sloppy in the first place and could
do with a re-design anyways, also they are very widely used
applications and I didn't want to introduce problems in the production
code as a result of the upgrade.

I hope this helps!

Sean

Coleen wrote:
Does anyone have any good detailed information on the conversion process?
We are in the process of converting 2 projects from 2003 to 2005 and have
some conversion errors that I can not find answers to. First, we have a lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also, on
almost all of our UserControls the conversion has remmed out all my code -
so now essentially, they do nothing. What is going on? Why did it do this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen
Sep 20 '06 #4
Coleen,

By using this one instead of the full conversion, things go mostly easier,

http://msdn.microsoft.com/asp.net/re...p/default.aspx

I hope this helps,

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:eA******** *******@TK2MSFT NGP03.phx.gbl.. .
Does anyone have any good detailed information on the conversion process?
We are in the process of converting 2 projects from 2003 to 2005 and have
some conversion errors that I can not find answers to. First, we have a
lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also,
on
almost all of our UserControls the conversion has remmed out all my code -
so now essentially, they do nothing. What is going on? Why did it do
this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen


Sep 20 '06 #5
Thanks to both of you fro your responses.

A couple of questions, if you don't mind...

First - if I understand you correctly Cor, we need to download Microsoft
Visual Studio 2005 - Update to Support Web Application Projects and then our
conversions will work better?

As for running in 2003 and re-writing in 2005, while that is possible in the
new project we are beginning (although I have done a LOT of web page
development - there is virtually no code-behind yet. It is just set up as a
demo set of screens right now) but the other project is fully functional in
2003, and very large. There is no way we can just re-write this
application, so we are going to have to bite the bullet and figure out how
to convert it.

The major problem we have is that one of our user controls has two classes
in it, and the "extra" class was moved to the App_Code directory - but only
the definitions were moved - none of the code was moved - that was all
remmed out! Any suggestions on how to convert this - or will the download
work?

Thanks again for your help,

Coleen

"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:OX******** ******@TK2MSFTN GP04.phx.gbl...
Coleen,

By using this one instead of the full conversion, things go mostly easier,

http://msdn.microsoft.com/asp.net/re...p/default.aspx
>
I hope this helps,

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:eA******** *******@TK2MSFT NGP03.phx.gbl.. .
Does anyone have any good detailed information on the conversion
process?
We are in the process of converting 2 projects from 2003 to 2005 and
have
some conversion errors that I can not find answers to. First, we have a
lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl. Also,
on
almost all of our UserControls the conversion has remmed out all my
code -
so now essentially, they do nothing. What is going on? Why did it do
this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen


Sep 20 '06 #6
Coleen,

Yes you have to download it and to install. It goes than direct in Visual
Studio.

I can not prove it is going better, but with this it is handled as it was in
version 1.1 and there is much less conversion.

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
Thanks to both of you fro your responses.

A couple of questions, if you don't mind...

First - if I understand you correctly Cor, we need to download Microsoft
Visual Studio 2005 - Update to Support Web Application Projects and then
our
conversions will work better?

As for running in 2003 and re-writing in 2005, while that is possible in
the
new project we are beginning (although I have done a LOT of web page
development - there is virtually no code-behind yet. It is just set up as
a
demo set of screens right now) but the other project is fully functional
in
2003, and very large. There is no way we can just re-write this
application, so we are going to have to bite the bullet and figure out how
to convert it.

The major problem we have is that one of our user controls has two classes
in it, and the "extra" class was moved to the App_Code directory - but
only
the definitions were moved - none of the code was moved - that was all
remmed out! Any suggestions on how to convert this - or will the download
work?

Thanks again for your help,

Coleen

"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:OX******** ******@TK2MSFTN GP04.phx.gbl...
>Coleen,

By using this one instead of the full conversion, things go mostly
easier,

http://msdn.microsoft.com/asp.net/re...p/default.aspx
>>
I hope this helps,

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:eA******* ********@TK2MSF TNGP03.phx.gbl. ..
Does anyone have any good detailed information on the conversion
process?
We are in the process of converting 2 projects from 2003 to 2005 and
have
some conversion errors that I can not find answers to. First, we have
a
lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is not
defined." where uc_mc_btn_foote r is the name of the UserControl.
Also,
on
almost all of our UserControls the conversion has remmed out all my
code -
so now essentially, they do nothing. What is going on? Why did it do
this?
Is there any resoure I can go to to find some answers on the conversion
process and how to fix these problems?

TIA, Coleen




Sep 20 '06 #7
Thank you! We will do that and hope it works better!

"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:eQ******** ******@TK2MSFTN GP02.phx.gbl...
Coleen,

Yes you have to download it and to install. It goes than direct in Visual
Studio.

I can not prove it is going better, but with this it is handled as it was
in
version 1.1 and there is much less conversion.

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
Thanks to both of you fro your responses.

A couple of questions, if you don't mind...

First - if I understand you correctly Cor, we need to download Microsoft
Visual Studio 2005 - Update to Support Web Application Projects and then
our
conversions will work better?

As for running in 2003 and re-writing in 2005, while that is possible in
the
new project we are beginning (although I have done a LOT of web page
development - there is virtually no code-behind yet. It is just set up
as
a
demo set of screens right now) but the other project is fully functional
in
2003, and very large. There is no way we can just re-write this
application, so we are going to have to bite the bullet and figure out
how
to convert it.

The major problem we have is that one of our user controls has two
classes
in it, and the "extra" class was moved to the App_Code directory - but
only
the definitions were moved - none of the code was moved - that was all
remmed out! Any suggestions on how to convert this - or will the
download
work?

Thanks again for your help,

Coleen

"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:OX******** ******@TK2MSFTN GP04.phx.gbl...
Coleen,

By using this one instead of the full conversion, things go mostly
easier,

http://msdn.microsoft.com/asp.net/re...p/default.aspx
>
I hope this helps,

Cor

"Coleen" <co**********@y ahoo.comschreef in bericht
news:eA******** *******@TK2MSFT NGP03.phx.gbl.. .
Does anyone have any good detailed information on the conversion
process?
We are in the process of converting 2 projects from 2003 to 2005 and
have
some conversion errors that I can not find answers to. First, we
have
a
lot
of UserControls. I am getting the error "Type uc_mc_btn_foote r is
not
defined." where uc_mc_btn_foote r is the name of the UserControl.
Also,
on
almost all of our UserControls the conversion has remmed out all my
code -
so now essentially, they do nothing. What is going on? Why did it do
this?
Is there any resoure I can go to to find some answers on the
conversion
process and how to fix these problems?

TIA, Coleen





Sep 20 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1165
by: Andrew Ducker | last post by:
VS 2005 uses Partial Classes to keep the designer-generated code separate from the user-created code. Obviously VS 2003 doesn't. However, when converting from 2003 to 2005, it doesn't split the code out into partial classes. Is there any way to do so automatically?
0
1707
by: Rich | last post by:
(1) Is there a better place to pose the question below? (2) I am starting to convert my enterprise solution from VS 2003 (.NET v1.1.4322) to VS 2005 Professional (.NET v2.0.50727). The entire solution uses the following technologies - Windows Server 2003 Windows Mobile 2003 Windows XP Professional SP2 Windows 2000 Professional SP4 SQL Server 2000
1
1297
by: Friso Wiskerke | last post by:
Hi All, We've got an VS.2003 ASPNET (VB) webproject which we would like to convert to VS.2005 so that we can make use of the Master Page feature. Converting the initial pages to 2005 is not such a problem (some minor errors) but we run into trouble when we're trying to insert a converted page into a master page content-placeholder. The original page has some Javascript in it which ofcourse references to controls in a form in the page....
1
1413
by: Dan Munk | last post by:
Hello, I have a large project exclusively made up of interfaces (several hundred) that define the business objects used in our system. Heavy inheritance and aggregation are used in the project. In Visual Studio 2003 the project takes ~30 seconds to build. In Visual Studio 2005 the project takes ~24 minutes. The project references one other assembly. I've tried to reference the dependency both as a dll and as a project.. Has anyone...
6
1811
by: Dennis D. | last post by:
Having problems converting Murach's Beginning Visual Basic.net (Prince) and Microsoft Press' Programming Visual Basic.net (Balena) examples for use in VB.net 2005 Express. The VS conversion wizard has not been able to convert any of them. These are just two example sources of many. What should I be doing to convert these samples, or should I reinstall VB.net 2003? Dennis D., http://www.dennisys.com/
1
1457
by: Blasting Cap | last post by:
I had a copy of a project that was working in Visual Studio 2003 and Framework 1.1. After a computer crash, I was given VS 2005 and am having more than a little difficulty getting things to open in VS 2005. At first, I tried converting the project. That failed (it brought in all the junk I had in my source folder). As Plan B, I created a new website, using Visual Web Developer, and
0
1128
by: Tom | last post by:
I am converting a small VB.NET 2003 application over to VS 2005. I ran it thru the 'upgrade' wizard which prompty upgraded it without any real issues (except some warnings). However, I did notice that it didn't really take advantage of the new 'My Project' system folder and namespace - i.e. the AssemblyInfo.vb was still in the main app, along with app.config, etc etc. In order to take advantage of the My Project (i.e. My namespace)...
6
6018
by: Nathan Sokalski | last post by:
I recently converted some ASP.NET 1.1 projects of mine, created with Visual Studio .NET 2003, to Web Application Projects in Visual Studio .NET 2005 so that I could use ASP.NET 2.0 (All my ASP.NET is done using VB.NET). After converting, everything was fine, and worked and compiled correctly, but I noticed one big difference between the VB.NET code of the converted files in the projects and the VB.NET code in new pages. The new pages use...
4
1727
by: Vadim | last post by:
Hello, I need to converting project that done on Visual Studio 2005 to Visual Studio 2003. What the best way to do this? Vadim Vilkhov
0
8792
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9479
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9209
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8215
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6054
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4570
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4826
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3280
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2748
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.