I've created a new class in App_Code
namespace Site {
public class MyClass {
public MyClass() {
}
}
}
this is my Global.asax.cs
namespace Site {
public class Global : System.Web.HttpApplication {
protected void Application_Start(object sender, EventArgs e) {
*MyClass myClass = new MyClass();*
}
}
}
The error is in: MyClass myClass = new MyClass();
The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?)
What am I missing here?
Finally found out what went wrong. I've set the Build Action of the cs file to Content instead of Compile
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With