You are Here: FAQ ->Scripting & Programming->ASP .Net->Article #13


WebHosting Microsoft-Edition This Article is for 1&1 Microsoft Web Hosting Only.


What Version of the .net Framework is installed?




ASP.NET version of this application is : 1.1.4322.2300 on MS shared hosting packages before May 31st 2006, however you can request that it is updated to 2.0. Shared MS hosting packages bought after 31st May will have ASP.NET 2.0 .

To check this for your self on your own hosting package, create a new aspx file and paste the following code into it.

<%@ Page language="c#"  %>
<HTML>
<HEAD>
            <TITLE>.NET Framework Version</TITLE>
            <SCRIPT language="C#" runat=server>
                        public void Page_Load(object sender, System.EventArgs e)
                        {
                                    Response.Write("ASP.NET version of this application is : " + System.Environment.Version.ToString());
                        }
            </SCRIPT>
</HEAD>
<BODY>
</BODY>
</HTML>



To see what this code will look like please click here.


Print Article
How useful was this article?
(From 5 = Very Useful to 1 = Not Very Useful at all):
1 2 3 4 5