diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-13 09:39:25 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-13 09:39:25 -0700 |
commit | b18ceb3cf9752e172d62064f5a4f750ccbb311a1 (patch) | |
tree | b2a6847ec5c3fe29a143c5327046c6d021335b14 /samples | |
parent | fc714cae7f69d24af4ab12bca1dcbb351708e413 (diff) | |
download | DotNetOpenAuth-b18ceb3cf9752e172d62064f5a4f750ccbb311a1.zip DotNetOpenAuth-b18ceb3cf9752e172d62064f5a4f750ccbb311a1.tar.gz DotNetOpenAuth-b18ceb3cf9752e172d62064f5a4f750ccbb311a1.tar.bz2 |
Split RP control base class into two.
Diffstat (limited to 'samples')
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/login.aspx | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/login.aspx b/samples/OpenIdRelyingPartyWebForms/login.aspx index 42d40e8..aa96339 100644 --- a/samples/OpenIdRelyingPartyWebForms/login.aspx +++ b/samples/OpenIdRelyingPartyWebForms/login.aspx @@ -2,6 +2,14 @@ ValidateRequest="false" MasterPageFile="~/Site.Master" %> <%@ Register Assembly="DotNetOpenAuth" Namespace="DotNetOpenAuth.OpenId.RelyingParty" TagPrefix="rp" %> + +<asp:Content runat=server ContentPlaceHolderID=head> +<script> + +window.openid_visible_iframe = true; // causes the hidden iframe to show up +window.openid_trace = true; // causes lots of messages +</script> +</asp:Content> <asp:Content runat="server" ContentPlaceHolderID="Main"> <h2>Login Page </h2> <rp:OpenIdLogin ID="OpenIdLogin1" runat="server" CssClass="openid_login" RequestCountry="Request" @@ -23,8 +31,7 @@ <asp:Label ID="setupRequiredLabel" runat="server" EnableViewState="False" Text="You must log into your Provider first to use Immediate mode." Visible="False" /> <p> - <rp:OpenIdButton runat="server" ImageUrl="~/images/yahoo.png" - ID="yahooLoginButton" Identifier="https://me.yahoo.com/" - /> + <rp:OpenIdButton runat="server" ImageUrl="~/images/yahoo.png" + ID="yahooLoginButton" Identifier="https://me.yahoo.com/" /> </p> </asp:Content> |