I Wrote the below lines of code in my Data Access Layer(DAL).
private static int _myvar;
public static int Myvar
{
get { return _myvar; }
set { _myvar = value; }
}
I provided all necessary namespaces in CodeBehind and Created DAL object there. Still I could not access that proprety. Showing "Qualify it with a type name instead". Can Someone Please help with it?