error asp.net 2.0

Hello, when trying to execute this application I am with this error

Server Error in '/' Application.

--------------------------------------------------------------------------------

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load type 'CommunityServer.Global'.

Source Error:

Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="CommunityServer.Global" %>



Source File: D:\hshome\tdpaz\territoriodepaz.org\global.asax Line: 1


as I can correct it
 
Hello,

Ensure all the /bin files uploaded properly as well as that global.asax.cs
 
You can put up a .aspx file like this and access it with your browser to check the exact version being used.

Code:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        lblVersion.Text = System.Environment.Version.ToString();
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>ASP.NET Version Checker</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>     
        <p>.NET CLR Version: 
        <strong><asp:Label ID="lblVersion" runat="server" /></strong></p>
    </div>
    </form>
</body>
</html>

If it was running into a problem with the ASP.NET version, I'd expect a different error message..
 
I am a Reseller Hosting and a client requires version 2.0 of asp.net and I do not know like activating it from of control panel.

When running the lines of code that they sent to me I verify that it is running with version 1.1 and need the 2.0 asp.net.

As active him it is version in the server?

So that it can execute the application that it requires "Community Server" (www.communityserver.org).

Thank you.
 
You have to send us a ticket for ASP.NET 2.0. Then we will do this.

ASP.NET 2.0 needs to enable manually on server.
 
Windows or Linux Hosting Customers, with
Date of Signup: Prior to June 23rd, 2007, and
Control Panel: https://cp.jodoshared.com
Please Use: http://helpdesk.jodohost.com/support/index.php for support

Reseller Hosting Customers, with
Date of Signup: Prior to June 23rd, 2007, and
Control Panel: https://cp.m****here.biz
http://resellerdesk.jodohost.com/support/index.php for support

Windows, Linux or Reseller Hosting Customers, with
Date of Signup: After June 23rd, 2007, and
Control Panel: https://cp.gohsphere.com
http://cluster2desk.jodohost.com/support/index.php for support

Windows VPS Hosting Customers, please login directly to your
Control Panel - https://cp.jodovps.com for Support (Click Support Center)
 
Back
Top