Verions of ASP.NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What is the difference between the following versions of the .NET Framework?

1.1.4322.2032
1.1.4322.2300

We are running into a problem with our ASP.NET application using the later
build of the .NET Framework that cannot be reproduced on the earlier version.
I downloaded and installed SP1 and all the hotfixes but the version still
shows 2032.

Anybody know how to upgrade that version to 2300?

TIA
 
re:
Anybody know how to upgrade that version to 2300?

Uninstall 1.1.4322.2032 ( using Add/Remove Programs )
and then install the .Net Framework 1.1, its SP1, and the
ASP.NET Security Update for the .NET Framework 1.1 SP 1

..Net Framework 1.1 redistributable:
http://www.microsoft.com/downloads/...E3-F589-4842-8157-034D1E7CF3A3&displaylang=en

..Net Framework 1.1 SP1 :
http://www.microsoft.com/downloads/...4F-088E-40B2-BBDB-A83353618B38&displaylang=en

If you're running Windows Server 2003, download this SP1 :
http://www.microsoft.com/downloads/...F7-2CB7-4864-8623-A1038563DF23&displaylang=en

..Net Framework 1.1 Security Update :
http://www.microsoft.com/downloads/...8A-29EB-49CF-9DBC-1A0DC2273FF9&displaylang=en

Depending on the OS you're running, you might need to d/l/install a different version:
http://www.microsoft.com/technet/security/bulletin/ms05-004.mspx






Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
We followed your instructions and the version number remains at 1.1.4322.2032.

Any other ideas?
 
re:
We followed your instructions and the version number remains at 1.1.4322.2032.

What does :

<%
Response.Write("The .NET version is " & System.Environment.Version.ToString() )
%>

return ?

( using <%@ Page Language="VB" %> )

re:
Any other ideas?

Other than nuke the partition and reinstall ?

Fixing is sometimes a lot harder than nuking and reinstalling.
You must have a bad install.

See my version at http://asp.net.do/test11/version3.aspx



Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
The .NET version is 1.1.4322.2032

Juan T. Llibre said:
re:

What does :

<%
Response.Write("The .NET version is " & System.Environment.Version.ToString() )
%>

return ?

( using <%@ Page Language="VB" %> )

re:

Other than nuke the partition and reinstall ?

Fixing is sometimes a lot harder than nuking and reinstalling.
You must have a bad install.

See my version at http://asp.net.do/test11/version3.aspx



Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
Your problem is that the previous version ( the unvarnished 1.1 release )
is not being updated ( you knew that... ).

1. Did you uninstall the .Net Framework 1.1 via Add/Remove Programs ?

2. Did you delete the .Net Framework 1.1 directory after you uninstalled it ?
( previous to re-installing the .Net Framework 1.1 + SP1 + the security update ? )

That assures that no "old" binaries ( belonging to the previous version ) are left behind.
If you didn't, you might want to try that.

Otherwise, I see no recourse but to nuke the partiution and reinstall the OS from scratch.



Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
Back
Top