473,326 Members | 2,805 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

Framework 1.1 and 2.0 on same site

We have one web application created in VS 2003 / Framework 1.1.

We need to add one more page to the site. Is it possible to create a
new page with VS 2005 / Framework 2.0 and somehow add it to the
existing site, and still have it work? And if yes, how so?
Regards /Snedker
--
http://www.dbconsult.dk
http://www.vinthervej2.dk [private]
Jun 11 '07 #1
8 1190
"Morten Snedker" <morten_spammenot_ATdbconsult.dkwrote in message
news:n8********************************@4ax.com...
We have one web application created in VS 2003 / Framework 1.1.

We need to add one more page to the site. Is it possible to create a
new page with VS 2005 / Framework 2.0 and somehow add it to the
existing site, and still have it work? And if yes, how so?
Whereas you can have multiple versions of the Framework on a webserver, each
site or virtual directory can only use one version - you specify the version
in IIS.

VS.NET 2005 cannot produce v1.x assemblies natively, though there is an
add-on from Microsoft (MSBee) which will do this:
http://www.microsoft.com/downloads/d...displaylang=en
--
http://www.markrae.net

Jun 11 '07 #2
how big is your site? If time isn't a factor convert the entire site to 2.0.
Why have 1 page in 2.0 and the other pages running .NET 1.1
what I have done in this scenario was run the old site under .NET 1.1, and I
created a new site under 2.0 and we would slowly migrate the site to 2.0 so
half of the site would run under 1.1 and the other half under 2.0 while the
migration was happening.

"Morten Snedker" <morten_spammenot_ATdbconsult.dkwrote in message
news:n8********************************@4ax.com...
We have one web application created in VS 2003 / Framework 1.1.

We need to add one more page to the site. Is it possible to create a
new page with VS 2005 / Framework 2.0 and somehow add it to the
existing site, and still have it work? And if yes, how so?
Regards /Snedker
--
http://www.dbconsult.dk
http://www.vinthervej2.dk [private]

Jun 12 '07 #3
And, that is the only way you can truly do it.

Most 1.1 sites will succesfully convert to 2.0 without any problem, however,
so why go through the circus hoops when it is not needed.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
"Mike" <Mi**@community.nospamwrote in message
news:eM**************@TK2MSFTNGP05.phx.gbl...
how big is your site? If time isn't a factor convert the entire site to
2.0. Why have 1 page in 2.0 and the other pages running .NET 1.1
what I have done in this scenario was run the old site under .NET 1.1, and
I created a new site under 2.0 and we would slowly migrate the site to 2.0
so half of the site would run under 1.1 and the other half under 2.0 while
the migration was happening.

"Morten Snedker" <morten_spammenot_ATdbconsult.dkwrote in message
news:n8********************************@4ax.com...
>We have one web application created in VS 2003 / Framework 1.1.

We need to add one more page to the site. Is it possible to create a
new page with VS 2005 / Framework 2.0 and somehow add it to the
existing site, and still have it work? And if yes, how so?
Regards /Snedker
--
http://www.dbconsult.dk
http://www.vinthervej2.dk [private]


Jun 13 '07 #4
Most 1.1 sites will succesfully convert to 2.0 without any problem, however,
so why go through the circus hoops when it is not needed. -
this is true but I've taken on projects where the .NET 1.1 web apps were
still written like ASP but with an aspx extension so I had to a true
re-write of the application.

No kidding, I started one project to do some .NET 1.1 to 2.0 migration and
the entire 1.1 app was written in ASP. All the developer did was a copy and
paiste from him asp web site into a .NET project and gave the pages an aspx
extension. There was no code behind, the code had nothing to do with .NET at
all. So when I took it over I was pretty much starting from scratch. I've
seen many a projects like that. It seems like some developers aren't taken
the time to learn .NET, and they just want to create something in the .NET
IDE. Why create an ASP app in the .NET IDE or even use the .NET resources to
run the app? Makes no sense to me.


"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMwrote in
message news:uf**************@TK2MSFTNGP05.phx.gbl...
And, that is the only way you can truly do it.

Most 1.1 sites will succesfully convert to 2.0 without any problem,
however, so why go through the circus hoops when it is not needed.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
"Mike" <Mi**@community.nospamwrote in message
news:eM**************@TK2MSFTNGP05.phx.gbl...
>how big is your site? If time isn't a factor convert the entire site to
2.0. Why have 1 page in 2.0 and the other pages running .NET 1.1
what I have done in this scenario was run the old site under .NET 1.1,
and I created a new site under 2.0 and we would slowly migrate the site
to 2.0 so half of the site would run under 1.1 and the other half under
2.0 while the migration was happening.

"Morten Snedker" <morten_spammenot_ATdbconsult.dkwrote in message
news:n8********************************@4ax.com.. .
>>We have one web application created in VS 2003 / Framework 1.1.

We need to add one more page to the site. Is it possible to create a
new page with VS 2005 / Framework 2.0 and somehow add it to the
existing site, and still have it work? And if yes, how so?
Regards /Snedker
--
http://www.dbconsult.dk
http://www.vinthervej2.dk [private]



Jun 13 '07 #5
"Mike" <Mi**@community.nospamwrote in message
news:u7**************@TK2MSFTNGP03.phx.gbl...
Most 1.1 sites will succesfully convert to 2.0 without any problem,
however,
so why go through the circus hoops when it is not needed. -
this is true but I've taken on projects where the .NET 1.1 web apps were
still written like ASP but with an aspx extension so I had to a true
re-write of the application.

No kidding, I started one project to do some .NET 1.1 to 2.0 migration and
the entire 1.1 app was written in ASP. All the developer did was a copy
and paiste from him asp web site into a .NET project and gave the pages an
aspx extension. There was no code behind, the code had nothing to do with
.NET at all. So when I took it over I was pretty much starting from
scratch. I've seen many a projects like that. It seems like some
developers aren't taken the time to learn .NET, and they just want to
create something in the .NET IDE. Why create an ASP app in the .NET IDE or
even use the .NET resources to run the app? Makes no sense to me.
I've been tasked with similar upgrades - all that it means in the long run
is that price goes up... :-)
--
http://www.markrae.net

Jun 13 '07 #6
I've been tasked with similar upgrades - all that it means in the long run
is that price goes up... :-)
yes it does. WAY UP! :)

"Mark Rae" <ma**@markNOSPAMrae.netwrote in message
news:uG**************@TK2MSFTNGP04.phx.gbl...
"Mike" <Mi**@community.nospamwrote in message
news:u7**************@TK2MSFTNGP03.phx.gbl...
>Most 1.1 sites will succesfully convert to 2.0 without any problem,
however,
so why go through the circus hoops when it is not needed. -
this is true but I've taken on projects where the .NET 1.1 web apps were
still written like ASP but with an aspx extension so I had to a true
re-write of the application.

No kidding, I started one project to do some .NET 1.1 to 2.0 migration
and the entire 1.1 app was written in ASP. All the developer did was a
copy and paiste from him asp web site into a .NET project and gave the
pages an aspx extension. There was no code behind, the code had nothing
to do with .NET at all. So when I took it over I was pretty much starting
from scratch. I've seen many a projects like that. It seems like some
developers aren't taken the time to learn .NET, and they just want to
create something in the .NET IDE. Why create an ASP app in the .NET IDE
or even use the .NET resources to run the app? Makes no sense to me.

I've been tasked with similar upgrades - all that it means in the long run
is that price goes up... :-)
--
http://www.markrae.net

Jun 13 '07 #7
"Mike" <Mi**@community.nospamwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
I've been tasked with similar upgrades - all that it means in the long run
>is that price goes up... :-)
yes it does. WAY UP! :)
You know the mantra:

"Wheresoever shall two or more contractors be gathered together in one
place, yea verily shall they smile sweetly and raise the invoice..."

Here endeth the lesson.

Amen.
--
http://www.markrae.net

Jun 13 '07 #8
LMAO!
"Mark Rae" <ma**@markNOSPAMrae.netwrote in message
news:eI**************@TK2MSFTNGP02.phx.gbl...
"Mike" <Mi**@community.nospamwrote in message
news:en**************@TK2MSFTNGP04.phx.gbl...
>I've been tasked with similar upgrades - all that it means in the long
run
>>is that price goes up... :-)
yes it does. WAY UP! :)

You know the mantra:

"Wheresoever shall two or more contractors be gathered together in one
place, yea verily shall they smile sweetly and raise the invoice..."

Here endeth the lesson.

Amen.
--
http://www.markrae.net

Jun 13 '07 #9

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

Similar topics

6
by: Joseph Geretz | last post by:
I recently upgraded my server to Windows 2003. The first thing I noticed is that my sample WebService pages no longer worked. The Invoke test button is missing. This is addresed by the following KB...
2
by: Richard West | last post by:
I have installed the beta of Dot Net Framework 2.0 on my server, running IIS 5 and Win 2K Server. I have configured my test virutal directory to use ASP.NET version 2.0.40607.0 (under the...
3
by: Shadow Lynx | last post by:
At the bottom of the default Error page that appears when Unhandled Exceptions occur, what exactly is the difference between the "Microsoft ..Net Framework Version" and the "ASP.NET Version"? I...
3
by: Chris Botha | last post by:
Hi, sorry, cross-post with the ADONET newsgroup. I have a web site on a 2003 server. The web site runs under Framework 1.1 and works with oracle, no problem. On the same server I have another...
3
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
13
by: dancer | last post by:
I have made a new post because when I try to respond to another, I get the error, "Article Rejected -- Ill-formed message id" This is in response to the advice of Juan Libre to install Net...
7
by: Rick | last post by:
I have a web service that I converted from VS 2003 Framework 1.1. to VS 2005 Framework 2.0. I tried to use the same IIS web site to run the web service. I deleted the Framework 1.1 files published...
17
by: Peter Anthony | last post by:
Can the 3.5 version of .NET Framework (currently Beta 2) be installed on pre-Vista machines? Or is it Vista-only? And, why doesn't .NET Framework come pre-installed with the operating system? I...
11
by: pg | last post by:
My old HD crashes, so I had to do a total re-install. After installer XP, I went to the Micrsoft Update site to get all the update. After 5 hours or so ... the update cycle started looping. ...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

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.