惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
J
Java Code Geeks
I
InfoQ
腾讯CDC
Vercel News
Vercel News
IT之家
IT之家
V
Visual Studio Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 叶小钗
有赞技术团队
有赞技术团队
月光博客
月光博客
Martin Fowler
Martin Fowler
量子位
L
LangChain Blog
B
Blog
Last Week in AI
Last Week in AI
博客园 - 司徒正美
Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

博客园 - choral

BLOG迁移通知………… Hello Boston [Tech-Ed 2006 Day 5] Hello Boston [Tech-Ed 2006 Day 4] Hello Boston [Tech-Ed 2006 Day 3] Hello Boston [Tech-Ed 2006 Day 2] Hello Boston [Tech-Ed 2006 Day 1] Tech-Ed 2006 is ready to go ! 今天发现的两个很酷的东西 OSS2007 SDK Released ~~ 在Office SharePoint Server 2007上创建自己的WebPart! OSS2007 beta2 LOADed! 来自ODC06的中文快讯 Office2007将名副其实 WSSv2的站点模板制作教程 SharePointV3,即Office SharePoint Server 2007的一些新特性透露! Kaneboy的用户控件包装器Hands-On-Lab更新咯! 了不起的Kaneboy发布了用户控件包装器的Hands-On-Lab! 神秘大师终于出手:WebPart中文管理工具 有关SharePoint单点登陆(Single Sign On)的一个开发样例
给SharePoint Portal Server 2003 加装登陆按钮的最简解决方案
choral · 2006-04-26 · via 博客园 - choral

step 1:将SPS开启匿名访问(IIS里开匿名,再在SPS的网站设置里开启匿名)

step 2:在c:\inetpub\wwwroot(这是对应SPS网站的虚拟目录)下的web.config里加入一个key:
<appSettings>
    <add key="SPS-EnforceIISAnonymousSetting" value="false" />
</appSettings>

step 3:把WSS网站的登陆按钮用FrontPage2003直接拷贝到SPS网站上需要的位置上。这个按钮其实就是一个webcontrol:
<WebPartPages:AuthenticationButton runat="server"/>

这样,登陆按钮就可以使用了。