在我的应用程序中,一些变量在应用程序启动时被初始化 .ie 在 global.aspx 文件中
Application_start()
{
//velocityhelper.TemplateLocatio is static class.
VelocityHelper.TemplateLocation = ConfigurationHelper.ContentLocation + "/"
+ ConfigurationHelper.CultureId + "/" + "Templates/";
}
当我们访问 templatelocation 变量时,它将始终返回 null。你能告诉我如何初始化这个模板位置吗?