Hai,
I want to get the Global static name(for Constant) Declared in the Global.asax file for my whole project as a constant.
my coding in the Global.asax file is
private static string strName = "ABCD";
public static string Names
{
get { return strName ; }
}
or is there any way to Declare the Global constant variable for the whole project in asp.net
thanks in advance
Regards,
Babu.k
I want to get the Global static name(for Constant) Declared in the Global.asax file for my whole project as a constant.
my coding in the Global.asax file is
private static string strName = "ABCD";
public static string Names
{
get { return strName ; }
}
or is there any way to Declare the Global constant variable for the whole project in asp.net
thanks in advance
Regards,
Babu.k
Comment