问题描述
在SP2013中配置ADFS后,welcome.ascx中的退出页面代码如下.
Below code for sign-out page in welcome.ascx after configure ADFS in SP2013.
下面的代码引用了注销功能,并且工作正常,但是我想在注销后在同一页面中添加登录URL,因为在共享点中作为其他用户的登录失败2013年与ADFS大会.
< SharePoint:MenuItemTemplate runat ="服务器" id =" ID_Logout2"
Text ="<%$ Resources:wss,personalactions_logout%>"
Description =<%$ Resources:wss,personalactions_logoutdescription%>"
MenuGroupId ="100"
Sequence ="400"
UseShortId ="true"
ClientOnClickNavigateUrl ="https://login.domain.in/adfs/ls/?wa=wsignout1.0"
/>
Text="<%$Resources:wss,personalactions_logout%>"
Description="<%$Resources:wss,personalactions_logoutdescription%>"
MenuGroupId="100"
Sequence="400"
UseShortId="true"
ClientOnClickNavigateUrl="https://login.domain.in/adfs/ls/?wa=wsignout1.0"
/>
推荐答案
请检查此,它将像下面的示例中所提到的那样帮助您
please check this Link this will help you out like mentioned in below example
用于登出后登陆的查询字符串参数:
wreply = {post-sign-out_landing_URL}
使用wreply参数的完整URL:
https://{DNS_name_of_RP_STS}/adfs/ls/?wa=wsignout1.0&wreply= {post-sign-out_landing_URL}
这篇关于重定向首页-welcome.ascx的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!