错误CS0103:当前上下文中不存在名称“Class1”

时间:2012-03-18 18:00:33

标签: c# asp.net-2.0

在我的网站上,我创建了一个类,例如App_Code文件夹中的Class1.cs当我尝试加载使用此类文件的默认页面时,我收到以下错误

CS0103: The name 'Class1' does not exist in the current context代码

String something = Class1.item1(text1.Text,text2.Text);

Class1.cs

组成
public static string item1(string a, string b)
{
//some action here
return null;
}

我的VS2010一切正常,但当我在服务器上托管网站时,我遇到了这个问题。

1 个答案:

答案 0 :(得分:0)

检查您的网站是否有权读取或访问App_Code文件夹。 u r服务器可能存在问题