473,385 Members | 1,973 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,385 software developers and data experts.

Using .NET 2.0/3.0 component in ASP.NET 1.1

Hi,

We have an ASP.NET 1.1 application which uses .NET framework 1.1. The
application is hosted in IIS 5.0 win 2000. We want to write a .NET 2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk Update
feature) and access it from ASP.NET 1.1. Is this possible? If so, please
provide inputs on how this can be done or direct me to the appropriate
resources?

Note: We have both the framework installed in the web server.

Appreciate your help!

Rasheed

Dec 29 '07 #1
6 1186
This is not possible. If you use a .NET 2.0 component, you need the 2.0
..NET Framework to run the applicaiton.
"Rasheed" <Ra*****@discussions.microsoft.comwrote in message
news:9B**********************************@microsof t.com...
Hi,

We have an ASP.NET 1.1 application which uses .NET framework 1.1. The
application is hosted in IIS 5.0 win 2000. We want to write a .NET 2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk Update
feature) and access it from ASP.NET 1.1. Is this possible? If so, please
provide inputs on how this can be done or direct me to the appropriate
resources?

Note: We have both the framework installed in the web server.

Appreciate your help!

Rasheed

Dec 29 '07 #2
Thanks Scott. We do have the .NET 2.0 framework installed in addition to
..NET 1.1. Are you saying.NET 2.0 components cannot be accessed from ASP.NET
1.1 (.NET 1.1) application?

Thanks,
Rasheed

"Scott M." wrote:
This is not possible. If you use a .NET 2.0 component, you need the 2.0
..NET Framework to run the applicaiton.
"Rasheed" <Ra*****@discussions.microsoft.comwrote in message
news:9B**********************************@microsof t.com...
Hi,

We have an ASP.NET 1.1 application which uses .NET framework 1.1. The
application is hosted in IIS 5.0 win 2000. We want to write a .NET 2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk Update
feature) and access it from ASP.NET 1.1. Is this possible? If so, please
provide inputs on how this can be done or direct me to the appropriate
resources?

Note: We have both the framework installed in the web server.

Appreciate your help!

Rasheed


Dec 29 '07 #3
On 29 Dec, 23:15, Rasheed <Rash...@discussions.microsoft.comwrote:
Thanks Scott. *We do have the .NET 2.0 framework installed in addition to
.NET 1.1. Are you saying.NET 2.0 components cannot be accessed from ASP.NET
1.1 (.NET 1.1) application?

Thanks,
Rasheed

"Scott M." wrote:
This is not possible. *If you use a .NET 2.0 component, you need the 2..0
..NET Framework to run the applicaiton.
"Rasheed" <Rash...@discussions.microsoft.comwrote in message
news:9B**********************************@microsof t.com...
Hi,
We have an ASP.NET 1.1 application which uses .NET framework 1.1. The
application is hosted in IIS 5.0 win 2000. We want to write a .NET 2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk Update
feature) and access it from ASP.NET 1.1. Is this possible? If so, please
provide inputs on how this can be done or direct me to the appropriate
resources?
Note: We have both the framework installed in the web server.
Appreciate your help!
Rasheed- Hide quoted text -

- Show quoted text -
Rasheed

You cannot expect ASP.NET v 1.1 to recognise and handle new components
introduced in v 2.0 The latter was developed ouside of the design
limitations of v 1.1 (it is reasonable to assume the ASP.NET v 1.1
developer's brief did not extend to unforseen enhancements), hence the
introduction of a new version of ASP.NET.

Had you put the question the other way round then the answer would be
Yes, ASP.NET v 2 is backward compatible with v 1.1 but that's only
because it was developed with full knowledge of the previous version.

Dec 30 '07 #4
Thanks Phill. This helps.

My bad, I though it may be possible to “configure” a specific component of
..NET 1.1 application to use .NET 2.0 framework (which is what we want as we
do not want to migrate the entire application to .NET 2.0 platform). I guess
a single process/domain can use only one target framework at a time.

Thanks,
Rasheed
"Phil H" wrote:
On 29 Dec, 23:15, Rasheed <Rash...@discussions.microsoft.comwrote:
Thanks Scott. We do have the .NET 2.0 framework installed in addition to
.NET 1.1. Are you saying.NET 2.0 components cannot be accessed from ASP.NET
1.1 (.NET 1.1) application?

Thanks,
Rasheed

"Scott M." wrote:
This is not possible. If you use a .NET 2.0 component, you need the 2..0
..NET Framework to run the applicaiton.
"Rasheed" <Rash...@discussions.microsoft.comwrote in message
>news:9B**********************************@microso ft.com...
Hi,
We have an ASP.NET 1.1 application which uses .NET framework 1.1. The
application is hosted in IIS 5.0 win 2000. We want to write a .NET 2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk Update
feature) and access it from ASP.NET 1.1. Is this possible? If so, please
provide inputs on how this can be done or direct me to the appropriate
resources?
Note: We have both the framework installed in the web server.
Appreciate your help!
Rasheed- Hide quoted text -
- Show quoted text -

Rasheed

You cannot expect ASP.NET v 1.1 to recognise and handle new components
introduced in v 2.0 The latter was developed ouside of the design
limitations of v 1.1 (it is reasonable to assume the ASP.NET v 1.1
developer's brief did not extend to unforseen enhancements), hence the
introduction of a new version of ASP.NET.

Had you put the question the other way round then the answer would be
Yes, ASP.NET v 2 is backward compatible with v 1.1 but that's only
because it was developed with full knowledge of the previous version.

Dec 30 '07 #5
The .NET Framework consists of a set of base classes and a Common Language
Runtime. The various CLR's are not forward compatible as version 1.1's
runtime would not understand something introduced in the 2.0 Framework.

If you wish to use any portion of 2.0, you must upgrade your application to
be an ASP .NET 2.0 applicaiton. The good news is that if you do migrate the
1.1 application to 2.0, everything that used to work will still work as 2.0
is backward compatible with 1.1, even though 1.1 is not forward compatible
with 2.0. If you already have the 2.0 Framework installed on your servers,
this is going to be your best bet.

-Scott
"Rasheed" <Ra*****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Thanks Phill. This helps.

My bad, I though it may be possible to "configure" a specific component of
.NET 1.1 application to use .NET 2.0 framework (which is what we want as
we
do not want to migrate the entire application to .NET 2.0 platform). I
guess
a single process/domain can use only one target framework at a time.

Thanks,
Rasheed
"Phil H" wrote:
>On 29 Dec, 23:15, Rasheed <Rash...@discussions.microsoft.comwrote:
Thanks Scott. We do have the .NET 2.0 framework installed in addition
to
.NET 1.1. Are you saying.NET 2.0 components cannot be accessed from
ASP.NET
1.1 (.NET 1.1) application?

Thanks,
Rasheed

"Scott M." wrote:
This is not possible. If you use a .NET 2.0 component, you need the
2..0
..NET Framework to run the applicaiton.

"Rasheed" <Rash...@discussions.microsoft.comwrote in message
news:9B**********************************@microso ft.com...
Hi,

We have an ASP.NET 1.1 application which uses .NET framework 1.1.
The
application is hosted in IIS 5.0 win 2000. We want to write a .NET
2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk
Update
feature) and access it from ASP.NET 1.1. Is this possible? If so,
please
provide inputs on how this can be done or direct me to the
appropriate
resources?

Note: We have both the framework installed in the web server.

Appreciate your help!

Rasheed- Hide quoted text -

- Show quoted text -

Rasheed

You cannot expect ASP.NET v 1.1 to recognise and handle new components
introduced in v 2.0 The latter was developed ouside of the design
limitations of v 1.1 (it is reasonable to assume the ASP.NET v 1.1
developer's brief did not extend to unforseen enhancements), hence the
introduction of a new version of ASP.NET.

Had you put the question the other way round then the answer would be
Yes, ASP.NET v 2 is backward compatible with v 1.1 but that's only
because it was developed with full knowledge of the previous version.


Dec 30 '07 #6
Thanks Scot. Appreciate your feedback.

Abdul
"Scott M." wrote:
The .NET Framework consists of a set of base classes and a Common Language
Runtime. The various CLR's are not forward compatible as version 1.1's
runtime would not understand something introduced in the 2.0 Framework.

If you wish to use any portion of 2.0, you must upgrade your application to
be an ASP .NET 2.0 applicaiton. The good news is that if you do migrate the
1.1 application to 2.0, everything that used to work will still work as 2.0
is backward compatible with 1.1, even though 1.1 is not forward compatible
with 2.0. If you already have the 2.0 Framework installed on your servers,
this is going to be your best bet.

-Scott
"Rasheed" <Ra*****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Thanks Phill. This helps.

My bad, I though it may be possible to "configure" a specific component of
.NET 1.1 application to use .NET 2.0 framework (which is what we want as
we
do not want to migrate the entire application to .NET 2.0 platform). I
guess
a single process/domain can use only one target framework at a time.

Thanks,
Rasheed
"Phil H" wrote:
On 29 Dec, 23:15, Rasheed <Rash...@discussions.microsoft.comwrote:
Thanks Scott. We do have the .NET 2.0 framework installed in addition
to
.NET 1.1. Are you saying.NET 2.0 components cannot be accessed from
ASP.NET
1.1 (.NET 1.1) application?

Thanks,
Rasheed

"Scott M." wrote:
This is not possible. If you use a .NET 2.0 component, you need the
2..0
..NET Framework to run the applicaiton.

"Rasheed" <Rash...@discussions.microsoft.comwrote in message
>news:9B**********************************@microso ft.com...
Hi,

We have an ASP.NET 1.1 application which uses .NET framework 1.1.
The
application is hosted in IIS 5.0 win 2000. We want to write a .NET
2.0
component (which leverages .NET 2.0 Framework, Ex: Dataset Bulk
Update
feature) and access it from ASP.NET 1.1. Is this possible? If so,
please
provide inputs on how this can be done or direct me to the
appropriate
resources?

Note: We have both the framework installed in the web server.

Appreciate your help!

Rasheed- Hide quoted text -

- Show quoted text -

Rasheed

You cannot expect ASP.NET v 1.1 to recognise and handle new components
introduced in v 2.0 The latter was developed ouside of the design
limitations of v 1.1 (it is reasonable to assume the ASP.NET v 1.1
developer's brief did not extend to unforseen enhancements), hence the
introduction of a new version of ASP.NET.

Had you put the question the other way round then the answer would be
Yes, ASP.NET v 2 is backward compatible with v 1.1 but that's only
because it was developed with full knowledge of the previous version.



Dec 30 '07 #7

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

Similar topics

5
by: Carlos Ribeiro | last post by:
Hello all, I'm posting this to the list with the intention to form a group of people interested in this type of solution. I'm not going to spam the list with it, unless for occasional and...
6
by: Mario T. Lanza | last post by:
Greetings, I don't know about you guys but on many occasions I've asked myself whether or not someone else has solved a particular programming issue -- whether or not they developed a clever...
1
by: Raffe | last post by:
Hi all! I've been playing a bit with Component Designer in Visual Studio.NET. Seems to me like a great way to build simple data access components using "point and click". However I can't figure...
6
by: Sivaraman.S | last post by:
Hi, I have a doubt in .net. Hope u could solve the problem. When u r free plz consider this doubt. I have created a component to run End of Day Tasks. Hope u know how much time it takes to...
2
by: Phuff | last post by:
I have an application that should run in the system tray while open. It is supposed to be open at all times and I need it to dissapear when the "X" button is pushed on the form...but without...
1
by: Screenbert | last post by:
After finding nothing anywhere in google I am posting this so everyone can benefit by it. The formating is not pretty since I copied it from my word document, but you should benefit by it. ...
0
by: screenbert | last post by:
Managing DHCP Servers using C# They said it was impossible. It couldn't be done. But you can in fact manage DHCP servers using C#. This includes creating and deleting Scopes, SuperScopes,...
3
by: gary.bernstein | last post by:
I want to call a singleton getInstance function to retrieve a templatized object without knowing what types were used to create the singleton object in the first call to getInstance. How can I do...
2
by: =?Utf-8?B?QWxoYW1icmEgRWlkb3MgS2lxdWVuZXQ=?= | last post by:
Hi misters, I have installed my windows application that uses XpdfViewer (a COM Component for view Pdfs) using ClickOnce. But I get this error:
4
by: saritha2008 | last post by:
Hi, Iam working on converting one of xml file to other form of xml using XSLT. As part of this, I need to count the no. of "component" nodes in the xml file given below. If there is only one...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.