作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 Web 开发比较陌生,所以这可能是一个菜鸟问题。我正在尝试建立一个 ASP.NET MVC 网站来实现 DotNetOpenAuth 作为 OpenID 依赖方。
现在一切都在运行,所以这是非常令人兴奋的。我的目标是让 OpenID 身份验证在弹出窗口中进行。当您将 WebForms 与 DNOA 自定义控件一起使用时,这似乎是默认行为,但我无法在 MVC 中弄清楚。
我以为我已经接近这个了:
var request = OpenIdRp.CreateRequest(id);
request.AddExtension(new UIRequest(Mode = UIModes.Popup));
最佳答案
在我使用的 v.3.4.5 上,UIRequest 的 Mode 属性同时具有 getter 和 setter。
var req = openid.CreateRequest(openid_identifier);
// Add UI Request
if (req.DiscoveryResult.IsExtensionSupported<UIRequest>())
{
req.AddExtension(new UIRequest()
{
Mode = UIModes.Popup
});
<form action="/Account/OpenIdLogOn" target="popupWin" onsubmit="return openWindow('/Account/OpenIdLogOn', 'popupWin', 500, 500);">
function openWindow(url, wname, width, height) {
window.open(url, wname, "height=" + height + ",width=" + width + "location = 0, status = 1, resizable = 0, scrollbars=1, toolbar = 0");
return true;
}
<script type="text/javascript">
$(function () {
if (window.opener) {
window.opener.location.href = window.opener.location.href;
window.close();
}
});
</script>
关于asp.net-mvc-2 - 如何让 DotNetOpenAuth 打开用于身份验证的弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3907842/
我是一名优秀的程序员,十分优秀!