在我的网站上,我创建了一个类,例如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一切正常,但当我在服务器上托管网站时,我遇到了这个问题。
答案 0 :(得分:0)
检查您的网站是否有权读取或访问App_Code文件夹。 u r服务器可能存在问题