129 Web Design is a Web Design, Web Development and Web Marketing firm based in Portland, Maine.
Checkout Our blog.  Discuss coding, random tech issues and off topic items. Login to your 129 portal.  The place to get information regarding web design, web development and web marketing services. Answers to common questions regarding our web design, web development and web marketing services.
Checkout our portfolio to see examples of web design, web development and web marketing. Checkout our services to learn more about web design, web development and web marketing. 129 Web Design is a Web Design, Web Development and Web Marketing firm based in Portland, Maine. See what's new in our world of web design, web development and web marketing. Contact us to learn more about our web design, web development and web marketing services. Have a question about our web design, web development and web marketing services?  Click here!

ASP.net Version Test Script

Here’s a little script that we have used over and over again that will display the version of ASP.net that is running on a web server.  This script has been particularly useful when working with virtual hosts. 

Copy and paste the following code into a file (example: test.aspx) and upload to the webserver.

<%@ Page Language=”VB” %>

<script runat=”server”>
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        
        lblASPDOTNETVersion.Text = “This server is running ASP.NET version: ” & _
         System.Environment.Version.ToString()

    End Sub
</script>

<html>
<head>
    <title>Test ASP.NET Version:</title>
</head>
<body>
    <form id=”form1″ runat=”server”>
        <asp:Label ID=”lblASPDOTNETVersion” runat=”server”></asp:Label>
    </form>
</body>
</html>

The output should be something similar to:

 This server is running ASP.NET version 1.1.4322.2032

Leave a Reply


Portfolio | Services | Company | News | Contact | Site Map | F.A.Q. | RSS RSS / Subscribe | Current Promo | Partnerships | Privacy Policy | Terms & Conditions

129 Web Design & Marketing | PO Box 18207 | Portland, Maine 04112