vb.net sessionState sessionIdManager 在 Web 配置中键入 CustomAssemblyNameInBinFolder 值
vb.net sessionState sessionIdManagerType CustomAssemblyNameInBinFolder value in webconfig
我一直在尝试实现 here 中的以下示例。我似乎无法加载页面,我知道这是由于我在 webconfig 中所做的更改所致。有没有人有 "CustomAssemblyNameInBinFolder" 属性 的例子或解释?
sessionIDManagerType="Your.ID.Manager.Type, CustomAssemblyNameInBinFolder"
有没有人有关于 "CustomAssemblyNameInBinFolder" 属性 的例子或解释?
这是定义类型的程序集的名称。例如,如果您的解决方案中有一个名为 "Foo.dll" 的 DLL 包含类型 Your.ID.Manager.Type
,则 属性 将显示为:
sessionIDManagerType="Your.ID.Manager.Type, Foo"
You can specify a type name by using the CLR standard type name syntax, as shown in the following example:
<namespace>.<typename>, <assembly>
我一直在尝试实现 here 中的以下示例。我似乎无法加载页面,我知道这是由于我在 webconfig 中所做的更改所致。有没有人有 "CustomAssemblyNameInBinFolder" 属性 的例子或解释?
sessionIDManagerType="Your.ID.Manager.Type, CustomAssemblyNameInBinFolder"
有没有人有关于 "CustomAssemblyNameInBinFolder" 属性 的例子或解释?
这是定义类型的程序集的名称。例如,如果您的解决方案中有一个名为 "Foo.dll" 的 DLL 包含类型 Your.ID.Manager.Type
,则 属性 将显示为:
sessionIDManagerType="Your.ID.Manager.Type, Foo"
You can specify a type name by using the CLR standard type name syntax, as shown in the following example:
<namespace>.<typename>, <assembly>