我有一组会话密钥,我在全局类文件中声明,这些密钥在登录时正确设置。
public static class SessionKeys
{
public static string memberToken = "token";
public static string memberFirstName = "first_name";
public static string role_pmn = "PMNInstructor";
public static string role_superUser = "";
public static string role_chapterAdmin = "ChapterMember";
public static string role_registeredUser = "RegisteredUser";
}
我需要稍后在 XSLT 宏中访问其中一些会话变量以进行导航。我无法找到在 XSLT 宏中访问这些变量的正确语法。
此语法适用于我的 .NET 宏:
Session[Globals.SessionKeys.role_pmn]