Framework versioning

  • Thread starter Thread starter Steven K
  • Start date Start date
S

Steven K

Hello, I downloaded Visual Web Developer 2005 Express Edition to my local
machine. I built an application that work on my localhost. However, when I
uploaded the application to our hosting site, I got the following error. Is
this because I am running a different version of Framework?

--
Thanks in advance,

Steven


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

Source Error:
Line 1: <%@ Application Inherits="price_insx.Global" %>

Source File: e:\web_sites\thdb\global.asax Line: 1
 
Hi,

As Naveen K Kohli said, you need .Net framework2.0.
And error message seemed as if you didn't set virtual directory on your
application folder so there was no way to find "price_insx.Global" class.
 
Back
Top