问问题
2566 次
5 回答
1
您是否仍然必须包含 SafeControls 条目才能使其工作,例如:
<SafeControl Assembly="[FullAssembly Name]"
Namespace="[YourMasterPageNamespace]"
TypeName="*"
Safe="True" />
或在 WSPBuilder 配置中:
<add key="BuildSafeControls" value="True" />
于 2009-06-02T17:05:51.513 回答
1
从来没有见过这个.. 但我怀疑没有多少人在 SharePoint 中创建母版页的代码隐藏(微软也没有!)。
我不知道您要构建什么,但我可能会使用母版页中包含的服务器控件来实现它。
AllowPartiallyTrustedCallers 一直为我的服务器控件修复它。
您的 web.config 文件中的信任设置为什么?尝试完整。
于 2009-06-03T10:40:12.723 回答
0
Are you calling a third party assembly?
I ran into a situation recently that I was using a third party assembly and it did not have AllowPartiallyTrustedCallers in its code. When I tried to use the assebmly, it would fail.
于 2009-06-02T17:31:28.283 回答
0
您确定程序集已意外部署到 bin 而不是 GAC 吗?如果有两个程序集,则 GAC 中的一个优先。
于 2009-06-02T18:18:30.190 回答
0
您可以尝试检查您是否使用了完全限定的五部分名称,包括正确的公钥令牌和程序集的命名空间。
于 2010-02-12T20:20:29.810 回答