asp.net version

  • Thread starter Thread starter Shahriar
  • Start date Start date
S

Shahriar

I am using visual studio 2003. How can I find out what version my asp.net
is? I am interested in using ASP.net 2. Is there a way to upgrade the
ASP.net version in my Visual studio 2003? If not, is there a way to use the
ASP.net 2 controls such as the new Treeview control in my current version
of ASP.net.

Many thanks
Shahriar
 
VS 2002 is .NET 1.0
VS 2003 is .NET 1.1
VS 2005 is .NET 2.0

You can use 2003 for 1.0 stuff if you want, and I would assume you can use
2005 for 1.1 and 1.0 stuff, but it's BACKAWARDS compatability if anything,
not the other way, sorry.....
 
re:
How can I find out what version my asp.net is?

Copy this into a file and run it:
version.aspx
-------------
<%@ Page Language="VB" %>
<html>
<head>
</head>
<body>
<%
Response.Write(System.Environment.Version.ToString())
%>
</body>
</html>
---------------

That will give you the complete version number you are running.

re:
Is there a way to upgrade the ASP.net version in my Visual studio 2003?

No. You must install the .Net Framework 2.0 separately.

re:
If not, is there a way to use the ASP.net 2 controls such as the new
Treeview control in my current version of ASP.net.

No. You must upgrade to .Net Framework 2.0 to use those controls.




Juan T. Llibre
ASP.NET MVP
===========
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top